commit 1e90daabb52694726e008a9c53e468c3eceb0d9c Author: bob Date: Wed Jan 28 10:29:49 2026 -0600 init diff --git a/.bicep/main.bicep b/.bicep/main.bicep new file mode 100644 index 0000000..b0a5090 --- /dev/null +++ b/.bicep/main.bicep @@ -0,0 +1,58 @@ +targetScope = 'subscription' + +@description('The name of the resource group') +param resourceGroupName string = 'rg-blazor-grafana' + +@description('The location for all resources') +param location string = 'eastus' + +@description('The name of the App Service Plan') +param appServicePlanName string = 'asp-blazor-app' + +@description('The name of the Web App') +param webAppName string = 'webapp-blazor-${uniqueString(resourceGroupName)}' + +@description('The name of the Application Insights instance') +param appInsightsName string = 'ai-blazor-app' + +@description('The name of the Log Analytics Workspace') +param logAnalyticsWorkspaceName string = 'law-blazor-app' + +// Create the resource group +resource resourceGroup 'Microsoft.Resources/resourceGroups@2021-04-01' = { + name: resourceGroupName + location: location +} + +// Deploy the logging and monitoring infrastructure +module monitoring 'modules/monitoring.bicep' = { + scope: resourceGroup + name: 'monitoring-deployment' + params: { + location: location + appInsightsName: appInsightsName + logAnalyticsWorkspaceName: logAnalyticsWorkspaceName + } +} + +// Deploy the App Service infrastructure +module appService 'modules/appService.bicep' = { + scope: resourceGroup + name: 'appservice-deployment' + params: { + location: location + appServicePlanName: appServicePlanName + webAppName: webAppName + appInsightsInstrumentationKey: monitoring.outputs.instrumentationKey + appInsightsConnectionString: monitoring.outputs.connectionString + } +} + +// Outputs +output resourceGroupName string = resourceGroup.name +output webAppName string = appService.outputs.webAppName +output webAppUrl string = appService.outputs.webAppUrl +output appInsightsName string = monitoring.outputs.appInsightsName +output logAnalyticsWorkspaceId string = monitoring.outputs.workspaceId +output grafanaName string = monitoring.outputs.grafanaName +output grafanaEndpoint string = monitoring.outputs.grafanaEndpoint diff --git a/.bicep/modules/appService.bicep b/.bicep/modules/appService.bicep new file mode 100644 index 0000000..1c93bc4 --- /dev/null +++ b/.bicep/modules/appService.bicep @@ -0,0 +1,124 @@ +@description('The location for all resources') +param location string + +@description('The name of the App Service Plan') +param appServicePlanName string + +@description('The name of the Web App') +param webAppName string + +@description('Application Insights Instrumentation Key') +param appInsightsInstrumentationKey string + +@description('Application Insights Connection String') +param appInsightsConnectionString string + +// Create App Service Plan +resource appServicePlan 'Microsoft.Web/serverfarms@2022-09-01' = { + name: appServicePlanName + location: location + sku: { + name: 'B1' + tier: 'Basic' + size: 'B1' + family: 'B' + capacity: 1 + } + kind: 'linux' + properties: { + reserved: true + } +} + +// Create Web App +resource webApp 'Microsoft.Web/sites@2022-09-01' = { + name: webAppName + location: location + kind: 'app,linux' + properties: { + serverFarmId: appServicePlan.id + httpsOnly: true + siteConfig: { + linuxFxVersion: 'DOTNETCORE|8.0' + alwaysOn: true + minTlsVersion: '1.2' + ftpsState: 'Disabled' + http20Enabled: true + appSettings: [ + { + name: 'APPLICATIONINSIGHTS_CONNECTION_STRING' + value: appInsightsConnectionString + } + { + name: 'ApplicationInsightsAgent_EXTENSION_VERSION' + value: '~3' + } + { + name: 'XDT_MicrosoftApplicationInsights_Mode' + value: 'recommended' + } + { + name: 'APPINSIGHTS_INSTRUMENTATIONKEY' + value: appInsightsInstrumentationKey + } + { + name: 'ASPNETCORE_ENVIRONMENT' + value: 'Production' + } + { + name: 'OTEL_SDK_DISABLED' + value: 'false' + } + { + name: 'OTEL_TRACES_SAMPLER' + value: 'always_on' + } + { + name: 'OTEL_METRICS_EXPORTER' + value: 'otlp' + } + { + name: 'OTEL_EXPORTER_OTLP_ENDPOINT' + value: 'http://localhost:4317' + } + ] + metadata: [ + { + name: 'CURRENT_STACK' + value: 'dotnet' + } + ] + } + } +} + +// Enable detailed error messages and logging +resource webAppLogs 'Microsoft.Web/sites/config@2022-09-01' = { + parent: webApp + name: 'logs' + properties: { + applicationLogs: { + fileSystem: { + level: 'Information' + } + } + httpLogs: { + fileSystem: { + retentionInMb: 35 + retentionInDays: 7 + enabled: true + } + } + failedRequestsTracing: { + enabled: true + } + detailedErrorMessages: { + enabled: true + } + } +} + +// Outputs +output webAppName string = webApp.name +output webAppUrl string = 'https://${webApp.properties.defaultHostName}' +output webAppId string = webApp.id diff --git a/.bicep/modules/appService2.bicep b/.bicep/modules/appService2.bicep new file mode 100644 index 0000000..d34fcb0 --- /dev/null +++ b/.bicep/modules/appService2.bicep @@ -0,0 +1,108 @@ +@description('The location for all resources') +param location string + +@description('The name of the App Service Plan') +param appServicePlanName string + +@description('The name of the Web App') +param webAppName string + +@description('Application Insights Instrumentation Key') +param appInsightsInstrumentationKey string + +@description('Application Insights Connection String') +param appInsightsConnectionString string + +// Create App Service Plan +resource appServicePlan 'Microsoft.Web/serverfarms@2022-09-01' = { + name: appServicePlanName + location: location + sku: { + name: 'B1' + tier: 'Basic' + size: 'B1' + family: 'B' + capacity: 1 + } + kind: 'linux' + properties: { + reserved: true + } +} + +// Create Web App +resource webApp 'Microsoft.Web/sites@2022-09-01' = { + name: webAppName + location: location + kind: 'app,linux' + properties: { + serverFarmId: appServicePlan.id + httpsOnly: true + siteConfig: { + linuxFxVersion: 'DOTNETCORE|8.0' + alwaysOn: true + minTlsVersion: '1.2' + ftpsState: 'Disabled' + http20Enabled: true + appSettings: [ + { + name: 'APPLICATIONINSIGHTS_CONNECTION_STRING' + value: appInsightsConnectionString + } + { + name: 'ApplicationInsightsAgent_EXTENSION_VERSION' + value: '~3' + } + { + name: 'XDT_MicrosoftApplicationInsights_Mode' + value: 'recommended' + } + { + name: 'APPINSIGHTS_INSTRUMENTATIONKEY' + value: appInsightsInstrumentationKey + } + { + name: 'ASPNETCORE_ENVIRONMENT' + value: 'Production' + } + ] + metadata: [ + { + name: 'CURRENT_STACK' + value: 'dotnet' + } + ] + } + } +} + +// Enable detailed error messages and logging +resource webAppLogs 'Microsoft.Web/sites/config@2022-09-01' = { + parent: webApp + name: 'logs' + properties: { + applicationLogs: { + fileSystem: { + level: 'Information' + } + } + httpLogs: { + fileSystem: { + retentionInMb: 35 + retentionInDays: 7 + enabled: true + } + } + failedRequestsTracing: { + enabled: true + } + detailedErrorMessages: { + enabled: true + } + } +} + +// Outputs +output webAppName string = webApp.name +output webAppUrl string = 'https://${webApp.properties.defaultHostName}' +output webAppId string = webApp.id diff --git a/.bicep/modules/monitoring.bicep b/.bicep/modules/monitoring.bicep new file mode 100644 index 0000000..df2c167 --- /dev/null +++ b/.bicep/modules/monitoring.bicep @@ -0,0 +1,100 @@ +@description('The location for all resources') +param location string + +@description('The name of the Application Insights instance') +param appInsightsName string + +@description('The name of the Log Analytics Workspace') +param logAnalyticsWorkspaceName string + +@description('The name of the Grafana instance') +param grafanaName string = 'grafana-${uniqueString(resourceGroupId())}' + +// Create Log Analytics Workspace +resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2022-10-01' = { + name: logAnalyticsWorkspaceName + location: location + properties: { + sku: { + name: 'PerGB2018' + } + retentionInDays: 30 + features: { + enableLogAccessUsingOnlyResourcePermissions: true + } + } +} + +// Create Application Insights +resource applicationInsights 'Microsoft.Insights/components@2020-02-02' = { + name: appInsightsName + location: location + kind: 'web' + properties: { + Application_Type: 'web' + WorkspaceResourceId: logAnalyticsWorkspace.id + IngestionMode: 'LogAnalytics' + publicNetworkAccessForIngestion: 'Enabled' + publicNetworkAccessForQuery: 'Enabled' + } +} + +// Create Grafana Instance - Standard SKU (lowest cost managed option) +resource grafana 'Microsoft.Dashboard/grafana@2023-09-01' = { + name: grafanaName + location: location + sku: { + name: 'Standard' + } + identity: { + type: 'SystemAssigned' + } + properties: { + apiKey: 'Enabled' + autoLogoutMinutes: 0 + azureMonitorWorkspaceIntegrations: [ + { + azureMonitorWorkspaceResourceId: logAnalyticsWorkspace.id + } + ] + grafanaIntegrations: { + azureMonitorWorkspaceIntegrations: [ + { + azureMonitorWorkspaceResourceId: logAnalyticsWorkspace.id + } + ] + } + } +} + +// Assign Monitoring Data Reader role to Grafana for Log Analytics Workspace +resource grafanaLogAnalyticsRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + scope: logAnalyticsWorkspace + name: guid(logAnalyticsWorkspace.id, grafana.id, 'b24988ac-6180-42a0-ab88-20f7382dd24c') + properties: { + roleDefinitionId: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', 'b24988ac-6180-42a0-ab88-20f7382dd24c') + principalId: grafana.identity.principalId + principalType: 'ServicePrincipal' + } +} + +// Assign Monitoring Data Reader role to Grafana for Application Insights +resource grafanaAppInsightsRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + scope: applicationInsights + name: guid(applicationInsights.id, grafana.id, 'b24988ac-6180-42a0-ab88-20f7382dd24c') + properties: { + roleDefinitionId: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', 'b24988ac-6180-42a0-ab88-20f7382dd24c') + principalId: grafana.identity.principalId + principalType: 'ServicePrincipal' + } +} + +// Outputs +output appInsightsName string = applicationInsights.name +output instrumentationKey string = applicationInsights.properties.InstrumentationKey +output connectionString string = applicationInsights.properties.ConnectionString +output workspaceId string = logAnalyticsWorkspace.id +output workspaceName string = logAnalyticsWorkspace.name +output grafanaName string = grafana.name +output grafanaId string = grafana.id +output grafanaEndpoint string = grafana.properties.endpoint diff --git a/.bicep/modules/monitoring2.bicep b/.bicep/modules/monitoring2.bicep new file mode 100644 index 0000000..5d7df66 --- /dev/null +++ b/.bicep/modules/monitoring2.bicep @@ -0,0 +1,44 @@ +@description('The location for all resources') +param location string + +@description('The name of the Application Insights instance') +param appInsightsName string + +@description('The name of the Log Analytics Workspace') +param logAnalyticsWorkspaceName string + +// Create Log Analytics Workspace +resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2022-10-01' = { + name: logAnalyticsWorkspaceName + location: location + properties: { + sku: { + name: 'PerGB2018' + } + retentionInDays: 30 + features: { + enableLogAccessUsingOnlyResourcePermissions: true + } + } +} + +// Create Application Insights +resource applicationInsights 'Microsoft.Insights/components@2020-02-02' = { + name: appInsightsName + location: location + kind: 'web' + properties: { + Application_Type: 'web' + WorkspaceResourceId: logAnalyticsWorkspace.id + IngestionMode: 'LogAnalytics' + publicNetworkAccessForIngestion: 'Enabled' + publicNetworkAccessForQuery: 'Enabled' + } +} + +// Outputs +output appInsightsName string = applicationInsights.name +output instrumentationKey string = applicationInsights.properties.InstrumentationKey +output connectionString string = applicationInsights.properties.ConnectionString +output workspaceId string = logAnalyticsWorkspace.id +output workspaceName string = logAnalyticsWorkspace.name diff --git a/GrafanaBlazor/BlazorApp/App.razor b/GrafanaBlazor/BlazorApp/App.razor new file mode 100644 index 0000000..18d3e1f --- /dev/null +++ b/GrafanaBlazor/BlazorApp/App.razor @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/GrafanaBlazor/BlazorApp/BlazorApp.csproj b/GrafanaBlazor/BlazorApp/BlazorApp.csproj new file mode 100644 index 0000000..fde4e43 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/BlazorApp.csproj @@ -0,0 +1,24 @@ + + + + net8.0 + enable + enable + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/Components/Layout/MainLayout.razor b/GrafanaBlazor/BlazorApp/Components/Layout/MainLayout.razor new file mode 100644 index 0000000..2485006 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/Components/Layout/MainLayout.razor @@ -0,0 +1,23 @@ +@inherits LayoutComponentBase + +
+ + +
+
+ About +
+ +
+ @Body +
+
+
+ +
+ An unhandled error has occurred. + Reload + 🗙 +
diff --git a/GrafanaBlazor/BlazorApp/Components/Layout/NavMenu.razor b/GrafanaBlazor/BlazorApp/Components/Layout/NavMenu.razor new file mode 100644 index 0000000..1733690 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/Components/Layout/NavMenu.razor @@ -0,0 +1,21 @@ + diff --git a/GrafanaBlazor/BlazorApp/Components/Pages/Home.razor b/GrafanaBlazor/BlazorApp/Components/Pages/Home.razor new file mode 100644 index 0000000..6efa64f --- /dev/null +++ b/GrafanaBlazor/BlazorApp/Components/Pages/Home.razor @@ -0,0 +1,42 @@ +@page "/" +@inject ILogger Logger + +Home + +

Blazor Server App - Grafana Observability Demo

+ +

Welcome! This application is configured with:

+ +
    +
  • Serilog - Structured logging
  • +
  • Application Insights - Azure native monitoring
  • +
  • OpenTelemetry - Distributed tracing
  • +
  • Prometheus - Metrics endpoint at /metrics
  • +
+ +

Available Endpoints

+ +
    +
  • /health - Health check endpoint
  • +
  • /metrics - Prometheus metrics
  • +
+ +
+

Getting Started with Grafana

+

To visualize this data in Grafana:

+
    +
  1. Add Prometheus as a data source pointing to this app's /metrics endpoint
  2. +
  3. Add Azure Monitor as a data source for Application Insights
  4. +
  5. Create dashboards to visualize your metrics and logs
  6. +
+
+ + + +@code { + private void LogTestMessage() + { + Logger.LogInformation("Test log message generated from Home page at {Timestamp}", DateTime.UtcNow); + Logger.LogWarning("This is a warning message for testing"); + } +} diff --git a/GrafanaBlazor/BlazorApp/Components/Pages/Logs.razor b/GrafanaBlazor/BlazorApp/Components/Pages/Logs.razor new file mode 100644 index 0000000..f3b0944 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/Components/Pages/Logs.razor @@ -0,0 +1,131 @@ +@page "/logs" +@inject ILogger Logger + +Logs + +

Logs Demo

+ +

This page helps you generate different types of log entries for testing your Grafana setup.

+ +
+
+
+
+
Information
+

Generate informational log entries.

+ +
+
+
+ +
+
+
+
Warning
+

Generate warning log entries.

+ +
+
+
+ +
+
+
+
Error
+

Generate error log entries.

+ +
+
+
+
+ +
+
+
+
+
Structured Logging
+

Generate structured log with custom properties.

+ +
+
+
+ +
+
+
+
Bulk Logs
+

Generate multiple log entries at once.

+ +
+
+
+
+ +
+ Total logs generated this session: @logCount +
+ +@code { + private int logCount = 0; + + private void LogMessage(LogLevel level) + { + var message = $"Test {level} message generated at {DateTime.UtcNow:O}"; + + switch (level) + { + case LogLevel.Information: + Logger.LogInformation("{Message}", message); + break; + case LogLevel.Warning: + Logger.LogWarning("{Message}", message); + break; + case LogLevel.Error: + Logger.LogError("{Message}", message); + break; + } + + logCount++; + } + + private void LogStructuredMessage() + { + var userId = Guid.NewGuid(); + var operationId = Random.Shared.Next(1000, 9999); + + Logger.LogInformation( + "User {UserId} performed operation {OperationId} with status {Status} at {Timestamp}", + userId, + operationId, + "Success", + DateTime.UtcNow + ); + + logCount++; + } + + private void GenerateBulkLogs() + { + for (int i = 0; i < 10; i++) + { + var logLevel = i % 3 switch + { + 0 => LogLevel.Information, + 1 => LogLevel.Warning, + _ => LogLevel.Error + }; + + LogMessage(logLevel); + } + } +} diff --git a/GrafanaBlazor/BlazorApp/Components/Pages/Metrics.razor b/GrafanaBlazor/BlazorApp/Components/Pages/Metrics.razor new file mode 100644 index 0000000..e6d6a02 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/Components/Pages/Metrics.razor @@ -0,0 +1,111 @@ +@page "/metrics" +@inject ILogger Logger +@using System.Diagnostics + +Metrics + +

Metrics Demo

+ +

This page demonstrates various metrics that can be tracked and visualized in Grafana.

+ +
+
+
+
+
Counter Metrics
+

Counter: @counterValue

+ +
+
+
+ +
+
+
+
Timer Metrics
+

Simulate a slow operation and track its duration.

+ + @if (lastDuration > 0) + { +

Last operation took: @lastDuration ms

+ } +
+
+
+
+ +
+
+
+
+
Error Simulation
+

Generate different types of log entries for testing.

+ +
+
+
+ +
+
+
+
Custom Metrics
+

Page visits: @pageVisits

+ This counter increments each time you visit this page. +
+
+
+
+ +@code { + private int counterValue = 0; + private int pageVisits = 0; + private bool isProcessing = false; + private long lastDuration = 0; + private static readonly ActivitySource ActivitySource = new("BlazorApp.Metrics"); + + protected override void OnInitialized() + { + pageVisits++; + Logger.LogInformation("Metrics page visited. Total visits: {PageVisits}", pageVisits); + } + + private void IncrementCounter() + { + counterValue++; + Logger.LogInformation("Counter incremented to {CounterValue}", counterValue); + } + + private async Task SimulateSlowOperation() + { + isProcessing = true; + var sw = Stopwatch.StartNew(); + + using var activity = ActivitySource.StartActivity("SlowOperation"); + activity?.SetTag("operation.type", "simulated"); + + Logger.LogInformation("Starting slow operation"); + + try + { + await Task.Delay(Random.Shared.Next(1000, 3000)); + sw.Stop(); + lastDuration = sw.ElapsedMilliseconds; + + Logger.LogInformation("Slow operation completed in {Duration}ms", lastDuration); + activity?.SetTag("duration.ms", lastDuration); + } + finally + { + isProcessing = false; + } + } + + private void SimulateError() + { + var errorId = Guid.NewGuid(); + Logger.LogError("Simulated error with ID: {ErrorId}", errorId); + Logger.LogWarning("This is a test warning associated with error {ErrorId}", errorId); + } +} diff --git a/GrafanaBlazor/BlazorApp/Program.cs b/GrafanaBlazor/BlazorApp/Program.cs new file mode 100644 index 0000000..e8a9e6b --- /dev/null +++ b/GrafanaBlazor/BlazorApp/Program.cs @@ -0,0 +1,68 @@ +using Microsoft.AspNetCore.Components; +using BlazorApp.Components; +using Serilog; +using OpenTelemetry.Resources; +using OpenTelemetry.Trace; +using OpenTelemetry.Metrics; + +var builder = WebApplication.CreateBuilder(args); + +// Configure Serilog +Log.Logger = new LoggerConfiguration() + .ReadFrom.Configuration(builder.Configuration) + .Enrich.FromLogContext() + .WriteTo.Console() + .WriteTo.File("logs/blazorapp-.log", rollingInterval: RollingInterval.Day) + .CreateLogger(); + +builder.Host.UseSerilog(); + +// Add services to the container +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents(); + +// Add Application Insights +builder.Services.AddApplicationInsightsTelemetry(); + +// Add OpenTelemetry +builder.Services.AddOpenTelemetry() + .ConfigureResource(resource => resource + .AddService(serviceName: "BlazorApp")) + .WithTracing(tracing => tracing + .AddAspNetCoreInstrumentation() + .AddHttpClientInstrumentation() + .AddConsoleExporter()) + .WithMetrics(metrics => metrics + .AddAspNetCoreInstrumentation() + .AddHttpClientInstrumentation() + .AddConsoleExporter()); + +// Add health checks +builder.Services.AddHealthChecks(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline +if (!app.Environment.IsDevelopment()) +{ + app.UseExceptionHandler("/Error", createScopeForErrors: true); + app.UseHsts(); +} + +app.UseHttpsRedirection(); +app.UseStaticFiles(); +app.UseAntiforgery(); + +// Enable Prometheus metrics endpoint +app.UseMetricServer(); +app.UseHttpMetrics(); + +// Map health check endpoint +app.MapHealthChecks("/health"); + +app.MapRazorComponents() + .AddInteractiveServerRenderMode(); + +app.Logger.LogInformation("BlazorApp starting up..."); + +app.Run(); \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/Routes.razor b/GrafanaBlazor/BlazorApp/Routes.razor new file mode 100644 index 0000000..dd87796 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/Routes.razor @@ -0,0 +1,6 @@ + + + + + + diff --git a/GrafanaBlazor/BlazorApp/_Imports.razor b/GrafanaBlazor/BlazorApp/_Imports.razor new file mode 100644 index 0000000..dabafda --- /dev/null +++ b/GrafanaBlazor/BlazorApp/_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 BlazorApp +@using BlazorApp.Components +@using BlazorApp.Components.Layout diff --git a/GrafanaBlazor/BlazorApp/appsettings.json b/GrafanaBlazor/BlazorApp/appsettings.json new file mode 100644 index 0000000..47b8d5b --- /dev/null +++ b/GrafanaBlazor/BlazorApp/appsettings.json @@ -0,0 +1,27 @@ +{ + "Serilog": { + "MinimumLevel": { + "Default": "Information", + "Override": { + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information", + "System": "Warning" + } + } + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + }, + "ApplicationInsights": { + "LogLevel": { + "Default": "Information" + } + } + }, + "AllowedHosts": "*", + "ApplicationInsights": { + "ConnectionString": "" + } +} \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json b/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..42472fe --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json @@ -0,0 +1,130 @@ +{ + "format": 1, + "restore": { + "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj": {} + }, + "projects": { + "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "projectName": "BlazorApp", + "projectPath": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "packagesPath": "/home/robert/.nuget/packages/", + "outputPath": "/home/robert/Documents/repos/azure-web/BlazorApp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/robert/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.ApplicationInsights.AspNetCore": { + "target": "Package", + "version": "[2.22.0, )" + }, + "Microsoft.Extensions.Logging.ApplicationInsights": { + "target": "Package", + "version": "[2.22.0, )" + }, + "OpenTelemetry.Exporter.Console": { + "target": "Package", + "version": "[1.7.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.7.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.7.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.7.1, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.7.1, )" + }, + "Serilog.AspNetCore": { + "target": "Package", + "version": "[8.0.1, )" + }, + "Serilog.Settings.Configuration": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Serilog.Sinks.Console": { + "target": "Package", + "version": "[5.0.1, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "prometheus-net.AspNetCore": { + "target": "Package", + "version": "[8.2.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.22, 8.0.22]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[8.0.22, 8.0.22]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.100/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.g.props b/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.g.props new file mode 100644 index 0000000..5269700 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/robert/.nuget/packages/ + /home/robert/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.g.targets b/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.g.targets new file mode 100644 index 0000000..30a8bb8 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/BlazorApp.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfo.cs b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfo.cs new file mode 100644 index 0000000..000643a --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("BlazorApp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("BlazorApp")] +[assembly: System.Reflection.AssemblyTitleAttribute("BlazorApp")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfoInputs.cache b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8143cd0 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dde306ccf7bf4bb8d082a60aec7ba74921708f37594eac062aeef1d7dbc4376b diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a720dcd --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,55 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v8.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 = BlazorApp +build_property.RootNamespace = BlazorApp +build_property.ProjectDir = /home/robert/Documents/repos/azure-web/BlazorApp/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/robert/Documents/repos/azure-web/BlazorApp +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = + +[/home/robert/Documents/repos/azure-web/BlazorApp/App.razor] +build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/BlazorApp/Components/Layout/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTWFpbkxheW91dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/BlazorApp/Components/Layout/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTmF2TWVudS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/BlazorApp/Components/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Ib21lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/BlazorApp/Components/Pages/Logs.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Mb2dzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/BlazorApp/Components/Pages/Metrics.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9NZXRyaWNzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/BlazorApp/Routes.razor] +build_metadata.AdditionalFiles.TargetPath = Um91dGVzLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/BlazorApp/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.GlobalUsings.g.cs b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +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 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/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cache b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cs b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..18dec5d --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,16 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Prometheus.AspNetCore")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.assets.cache b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.assets.cache new file mode 100644 index 0000000..1696927 Binary files /dev/null and b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.assets.cache differ diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.AssemblyReference.cache b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..641624e Binary files /dev/null and b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.AssemblyReference.cache differ diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.CoreCompileInputs.cache b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..8686c60 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ef03edf2c1c99e1989ab37ede0615e351e3bc6e15d8617b06a4ad5647c3f51a0 diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.FileListAbsolute.txt b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5eeb66d --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.AssemblyReference.cache +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/rpswa.dswa.cache.json +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfoInputs.cache +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/BlazorApp.AssemblyInfo.cs +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/BlazorApp.csproj.CoreCompileInputs.cache +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cs +/home/robert/Documents/repos/azure-web/BlazorApp/obj/Debug/net8.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cache diff --git a/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/rpswa.dswa.cache.json b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..f6fb132 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/Debug/net8.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"ccQuP1h3J+qTJlTd8+t+EvsyTwT1WmMsdQ/GW8nCKBc=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["tTnK8VUcByjbDNR3a5TUed7WtuZcrVb9xbQJVhhiA5Y=","wv3kWnxdu1GvUaj9yySJfSu8aIocx9q0N1tZgcuTtWU=","LUrdm5WNNdZ4curT1rcM14xYzMF2HUsvkEqzMDZuwHI=","\u002BBqpfRks1dooPQQFQphQqPHm\u002BCeGAxwlSKsCegwbz6w=","z4vvdOQGcTxT7gN/WazgKuHHW80TDeNq99hp0X4qvF4=","bKHuv3z/aoG9kiqpmS/dQ8Nzmmi4GF76C065sPumDYM=","HThbJsxP5IboY2SH/oKqCBPVvW3gJKZ5TTgMuJ7HgJ4=","5oYWPZBeN\u002BAz07n7PuF5dX7tsf462mR/xxyywNYTY3k=","wB\u002Blqe/iZ5yw7FIWDOfSV1HFOylSoOb15S7E8siy96Q=","Cs\u002BqzZ3\u002BpvqaIGeeWRgClp1Y51DUyFbmgOLK99kpgJg="],"CachedAssets":{"tTnK8VUcByjbDNR3a5TUed7WtuZcrVb9xbQJVhhiA5Y=":{"Identity":"/home/robert/Documents/repos/azure-web/BlazorApp/wwwroot/css/app.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/BlazorApp/wwwroot/","BasePath":"/","RelativePath":"css/app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"5pqjz6pznu","Integrity":"F8fWEP6GxgmqtOdEh5xA2AiAM2TdbQPtdl8qewWuKZQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/app.css","FileLength":2304,"LastWriteTime":"2026-01-28T02:52:52.6882561+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/obj/project.assets.json b/GrafanaBlazor/BlazorApp/obj/project.assets.json new file mode 100644 index 0000000..ff35b29 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/project.assets.json @@ -0,0 +1,4833 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Google.Protobuf/3.22.5": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Core.Api/2.52.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.1/Grpc.Core.Api.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/Grpc.Core.Api.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Net.Client/2.52.0": { + "type": "package", + "dependencies": { + "Grpc.Net.Common": "2.52.0", + "Microsoft.Extensions.Logging.Abstractions": "3.0.3" + }, + "compile": { + "lib/net7.0/Grpc.Net.Client.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Grpc.Net.Client.dll": { + "related": ".pdb;.xml" + } + } + }, + "Grpc.Net.Common/2.52.0": { + "type": "package", + "dependencies": { + "Grpc.Core.Api": "2.52.0" + }, + "compile": { + "lib/net7.0/Grpc.Net.Common.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Grpc.Net.Common.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.ApplicationInsights/2.22.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.ApplicationInsights.AspNetCore/2.22.0": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.ApplicationInsights.DependencyCollector": "2.22.0", + "Microsoft.ApplicationInsights.EventCounterCollector": "2.22.0", + "Microsoft.ApplicationInsights.PerfCounterCollector": "2.22.0", + "Microsoft.ApplicationInsights.WindowsServer": "2.22.0", + "Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel": "2.22.0", + "Microsoft.AspNetCore.Hosting": "2.1.1", + "Microsoft.AspNetCore.Http": "2.1.22", + "Microsoft.Extensions.Configuration.Json": "3.1.0", + "Microsoft.Extensions.Logging.ApplicationInsights": "2.22.0", + "System.Text.Encodings.Web": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.AspNetCore.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.AspNetCore.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.ApplicationInsights.DependencyCollector/2.22.0": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AI.DependencyCollector.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AI.DependencyCollector.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "build/_._": {} + } + }, + "Microsoft.ApplicationInsights.EventCounterCollector/2.22.0": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AI.EventCounterCollector.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AI.EventCounterCollector.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.ApplicationInsights.PerfCounterCollector/2.22.0": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Extensions.Caching.Memory": "1.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AI.PerfCounterCollector.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AI.PerfCounterCollector.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "build/_._": {} + } + }, + "Microsoft.ApplicationInsights.WindowsServer/2.22.0": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.ApplicationInsights.DependencyCollector": "2.22.0", + "Microsoft.ApplicationInsights.PerfCounterCollector": "2.22.0", + "Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel": "2.22.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AI.WindowsServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AI.WindowsServer.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "build/_._": {} + } + }, + "Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel/2.22.0": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", + "System.IO.FileSystem.AccessControl": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AI.ServerTelemetryChannel.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AI.ServerTelemetryChannel.dll": { + "related": ".pdb;.xml" + } + }, + "build": { + "build/_._": {} + } + }, + "Microsoft.AspNetCore.Hosting/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1", + "Microsoft.AspNetCore.Http": "2.1.1", + "Microsoft.AspNetCore.Http.Extensions": "2.1.1", + "Microsoft.Extensions.Configuration": "2.1.1", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1", + "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1", + "Microsoft.Extensions.DependencyInjection": "2.1.1", + "Microsoft.Extensions.FileProviders.Physical": "2.1.1", + "Microsoft.Extensions.Hosting.Abstractions": "2.1.1", + "Microsoft.Extensions.Logging": "2.1.1", + "Microsoft.Extensions.Options": "2.1.1", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.1", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.1", + "Microsoft.Extensions.Hosting.Abstractions": "2.1.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.1", + "Microsoft.Extensions.Configuration.Abstractions": "2.1.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http/2.1.22": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.1.1", + "Microsoft.AspNetCore.WebUtilities": "2.1.1", + "Microsoft.Extensions.ObjectPool": "2.1.1", + "Microsoft.Extensions.Options": "2.1.1", + "Microsoft.Net.Http.Headers": "2.1.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.1.1", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.1.1", + "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1", + "Microsoft.Net.Http.Headers": "2.1.1", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Http.Features/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.1.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.WebUtilities/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.1.1", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0", + "System.Collections": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Memory/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "1.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0", + "Microsoft.Extensions.Options": "1.0.0", + "System.Linq": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "2.1.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.0", + "Microsoft.Extensions.FileProviders.Physical": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Json/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "3.1.0", + "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0", + "Microsoft.Extensions.FileSystemGlobbing": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Http/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0", + "Microsoft.Extensions.Logging": "3.1.0", + "Microsoft.Extensions.Options": "3.1.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.ApplicationInsights/2.22.0": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Extensions.Logging": "2.1.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Extensions.Logging.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.ObjectPool/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Net.Http.Headers/2.1.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.1.1", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "OpenTelemetry/1.7.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Configuration": "8.0.0", + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.7.0" + }, + "compile": { + "lib/net8.0/OpenTelemetry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Api/1.7.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.0" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Api.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Api.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.7.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "OpenTelemetry.Api": "1.7.0" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Exporter.Console/1.7.0": { + "type": "package", + "dependencies": { + "OpenTelemetry": "1.7.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Exporter.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Exporter.Console.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.7.0": { + "type": "package", + "dependencies": { + "Google.Protobuf": "[3.22.5, 4.0.0)", + "Grpc.Net.Client": "[2.52.0, 3.0.0)", + "OpenTelemetry": "1.7.0" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Extensions.Hosting/1.7.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "OpenTelemetry": "1.7.0" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.7.1": { + "type": "package", + "dependencies": { + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.7.0" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.7.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "8.0.0", + "OpenTelemetry.Api.ProviderBuilderExtensions": "1.7.0" + }, + "compile": { + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll": { + "related": ".xml" + } + } + }, + "prometheus-net/8.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Http": "3.1.0", + "Microsoft.Extensions.ObjectPool": "7.0.0" + }, + "compile": { + "lib/net7.0/Prometheus.NetStandard.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Prometheus.NetStandard.dll": { + "related": ".xml" + } + } + }, + "prometheus-net.AspNetCore/8.2.1": { + "type": "package", + "dependencies": { + "prometheus-net": "8.2.1" + }, + "compile": { + "lib/net6.0/Prometheus.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Prometheus.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog/3.1.1": { + "type": "package", + "compile": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Hosting": "8.0.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Formatting.Compact": "2.0.0", + "Serilog.Settings.Configuration": "8.0.0", + "Serilog.Sinks.Console": "5.0.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "compile": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "3.1.0" + }, + "compile": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/5.0.1": { + "type": "package", + "dependencies": { + "Serilog": "3.1.1" + }, + "compile": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "Google.Protobuf/3.22.5": { + "sha512": "tTMtDZPbLxJew8pk7NBdqhLqC4OipfkZdwPuCEUNr2AoDo1siUGcxFqJK0wDewTL8ge5Cjrb16CToMPxBUHMGA==", + "type": "package", + "path": "google.protobuf/3.22.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.22.5.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "Grpc.Core.Api/2.52.0": { + "sha512": "SQiPyBczG4vKPmI6Fd+O58GcxxDSFr6nfRAJuBDUNj+PgdokhjWJvZE/La1c09AkL2FVm/jrDloG89nkzmVF7A==", + "type": "package", + "path": "grpc.core.api/2.52.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.core.api.2.52.0.nupkg.sha512", + "grpc.core.api.nuspec", + "lib/net462/Grpc.Core.Api.dll", + "lib/net462/Grpc.Core.Api.pdb", + "lib/net462/Grpc.Core.Api.xml", + "lib/netstandard1.5/Grpc.Core.Api.dll", + "lib/netstandard1.5/Grpc.Core.Api.pdb", + "lib/netstandard1.5/Grpc.Core.Api.xml", + "lib/netstandard2.0/Grpc.Core.Api.dll", + "lib/netstandard2.0/Grpc.Core.Api.pdb", + "lib/netstandard2.0/Grpc.Core.Api.xml", + "lib/netstandard2.1/Grpc.Core.Api.dll", + "lib/netstandard2.1/Grpc.Core.Api.pdb", + "lib/netstandard2.1/Grpc.Core.Api.xml", + "packageIcon.png" + ] + }, + "Grpc.Net.Client/2.52.0": { + "sha512": "hWVH9g/Nnjz40ni//2S8UIOyEmhueQREoZIkD0zKHEPqLxXcNlbp4eebXIOicZtkwDSx0TFz9NpkbecEDn6rBw==", + "type": "package", + "path": "grpc.net.client/2.52.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "grpc.net.client.2.52.0.nupkg.sha512", + "grpc.net.client.nuspec", + "lib/net5.0/Grpc.Net.Client.dll", + "lib/net5.0/Grpc.Net.Client.pdb", + "lib/net5.0/Grpc.Net.Client.xml", + "lib/net6.0/Grpc.Net.Client.dll", + "lib/net6.0/Grpc.Net.Client.pdb", + "lib/net6.0/Grpc.Net.Client.xml", + "lib/net7.0/Grpc.Net.Client.dll", + "lib/net7.0/Grpc.Net.Client.pdb", + "lib/net7.0/Grpc.Net.Client.xml", + "lib/netstandard2.0/Grpc.Net.Client.dll", + "lib/netstandard2.0/Grpc.Net.Client.pdb", + "lib/netstandard2.0/Grpc.Net.Client.xml", + "lib/netstandard2.1/Grpc.Net.Client.dll", + "lib/netstandard2.1/Grpc.Net.Client.pdb", + "lib/netstandard2.1/Grpc.Net.Client.xml", + "packageIcon.png" + ] + }, + "Grpc.Net.Common/2.52.0": { + "sha512": "di9qzpdx525IxumZdYmu6sG2y/gXJyYeZ1ruFUzB9BJ1nj4kU1/dTAioNCMt1VLRvNVDqh8S8B1oBdKhHJ4xRg==", + "type": "package", + "path": "grpc.net.common/2.52.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "grpc.net.common.2.52.0.nupkg.sha512", + "grpc.net.common.nuspec", + "lib/net5.0/Grpc.Net.Common.dll", + "lib/net5.0/Grpc.Net.Common.pdb", + "lib/net5.0/Grpc.Net.Common.xml", + "lib/net6.0/Grpc.Net.Common.dll", + "lib/net6.0/Grpc.Net.Common.pdb", + "lib/net6.0/Grpc.Net.Common.xml", + "lib/net7.0/Grpc.Net.Common.dll", + "lib/net7.0/Grpc.Net.Common.pdb", + "lib/net7.0/Grpc.Net.Common.xml", + "lib/netstandard2.0/Grpc.Net.Common.dll", + "lib/netstandard2.0/Grpc.Net.Common.pdb", + "lib/netstandard2.0/Grpc.Net.Common.xml", + "lib/netstandard2.1/Grpc.Net.Common.dll", + "lib/netstandard2.1/Grpc.Net.Common.pdb", + "lib/netstandard2.1/Grpc.Net.Common.xml", + "packageIcon.png" + ] + }, + "Microsoft.ApplicationInsights/2.22.0": { + "sha512": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", + "type": "package", + "path": "microsoft.applicationinsights/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net452/Microsoft.ApplicationInsights.dll", + "lib/net452/Microsoft.ApplicationInsights.pdb", + "lib/net452/Microsoft.ApplicationInsights.xml", + "lib/net46/Microsoft.ApplicationInsights.dll", + "lib/net46/Microsoft.ApplicationInsights.pdb", + "lib/net46/Microsoft.ApplicationInsights.xml", + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", + "microsoft.applicationinsights.2.22.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, + "Microsoft.ApplicationInsights.AspNetCore/2.22.0": { + "sha512": "OuiZgRDX0zm3a1DRk/GT54ZsyTg8a88n3cpkVEYFJoRhT5X84l2C68BuKrglE0sIj+C0+o2WTR8S21YBD/ZWgA==", + "type": "package", + "path": "microsoft.applicationinsights.aspnetcore/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Microsoft.ApplicationInsights.AspNetCore.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.AspNetCore.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.AspNetCore.xml", + "microsoft.applicationinsights.aspnetcore.2.22.0.nupkg.sha512", + "microsoft.applicationinsights.aspnetcore.nuspec" + ] + }, + "Microsoft.ApplicationInsights.DependencyCollector/2.22.0": { + "sha512": "gseSmuCshdZqcn5r6EW1Zx52e5/p2RpAsHSanlxs8pq+Pbg1RZP678tXtxfVuHC0fA3MVV852pnfFC7ZGB0jew==", + "type": "package", + "path": "microsoft.applicationinsights.dependencycollector/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.ApplicationInsights.DependencyCollector.targets", + "content/ApplicationInsights.config.install.xdt", + "content/ApplicationInsights.config.transform", + "content/ApplicationInsights.config.uninstall.xdt", + "icon.png", + "lib/net452/Microsoft.AI.DependencyCollector.dll", + "lib/net452/Microsoft.AI.DependencyCollector.pdb", + "lib/net452/Microsoft.AI.DependencyCollector.xml", + "lib/netstandard2.0/Microsoft.AI.DependencyCollector.dll", + "lib/netstandard2.0/Microsoft.AI.DependencyCollector.pdb", + "lib/netstandard2.0/Microsoft.AI.DependencyCollector.xml", + "microsoft.applicationinsights.dependencycollector.2.22.0.nupkg.sha512", + "microsoft.applicationinsights.dependencycollector.nuspec" + ] + }, + "Microsoft.ApplicationInsights.EventCounterCollector/2.22.0": { + "sha512": "/fXUyZIMwaWfETgire4fygaBhY8J+hXvTVhSFXKV0JOFBenzzU4smGW8iRUFhE534a3QrczuFfmfCCkXRKbsNg==", + "type": "package", + "path": "microsoft.applicationinsights.eventcountercollector/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Microsoft.AI.EventCounterCollector.dll", + "lib/netstandard2.0/Microsoft.AI.EventCounterCollector.pdb", + "lib/netstandard2.0/Microsoft.AI.EventCounterCollector.xml", + "microsoft.applicationinsights.eventcountercollector.2.22.0.nupkg.sha512", + "microsoft.applicationinsights.eventcountercollector.nuspec" + ] + }, + "Microsoft.ApplicationInsights.PerfCounterCollector/2.22.0": { + "sha512": "nExsJsbN7694ueUNNBms/UNgza9WH4W/I6i5CnF9ujJ1sp57EL5Uk0NP9MDwlLVtYaaiznKPatVSv3Nu8vAplw==", + "type": "package", + "path": "microsoft.applicationinsights.perfcountercollector/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.ApplicationInsights.PerfCounterCollector.targets", + "content/ApplicationInsights.config.install.xdt", + "content/ApplicationInsights.config.transform", + "content/ApplicationInsights.config.uninstall.xdt", + "icon.png", + "lib/net452/Microsoft.AI.PerfCounterCollector.dll", + "lib/net452/Microsoft.AI.PerfCounterCollector.pdb", + "lib/net452/Microsoft.AI.PerfCounterCollector.xml", + "lib/netstandard2.0/Microsoft.AI.PerfCounterCollector.dll", + "lib/netstandard2.0/Microsoft.AI.PerfCounterCollector.pdb", + "lib/netstandard2.0/Microsoft.AI.PerfCounterCollector.xml", + "microsoft.applicationinsights.perfcountercollector.2.22.0.nupkg.sha512", + "microsoft.applicationinsights.perfcountercollector.nuspec" + ] + }, + "Microsoft.ApplicationInsights.WindowsServer/2.22.0": { + "sha512": "9k1x1+Kq1fElvcv0o/w9w8tRWAa2Y0f4NPBeHF5b2xCety4GM1yv3K3Ra0lZwO3kW0SHlm9M8nrySuyKQlHyYA==", + "type": "package", + "path": "microsoft.applicationinsights.windowsserver/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.ApplicationInsights.WindowsServer.targets", + "content/ApplicationInsights.config.install.xdt", + "content/ApplicationInsights.config.transform", + "content/ApplicationInsights.config.uninstall.xdt", + "icon.png", + "lib/net452/Microsoft.AI.WindowsServer.dll", + "lib/net452/Microsoft.AI.WindowsServer.pdb", + "lib/net452/Microsoft.AI.WindowsServer.xml", + "lib/netstandard2.0/Microsoft.AI.WindowsServer.dll", + "lib/netstandard2.0/Microsoft.AI.WindowsServer.pdb", + "lib/netstandard2.0/Microsoft.AI.WindowsServer.xml", + "microsoft.applicationinsights.windowsserver.2.22.0.nupkg.sha512", + "microsoft.applicationinsights.windowsserver.nuspec" + ] + }, + "Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel/2.22.0": { + "sha512": "Blb6S8UJSJ/jo6mxeO38gKgui75D2brp5NpXJoZUhyJzfmYsfhn7a4t5f+CDfAKyvie7sQB2FIzeEDQSiRE5zw==", + "type": "package", + "path": "microsoft.applicationinsights.windowsserver.telemetrychannel/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.targets", + "content/ApplicationInsights.config.install.xdt", + "content/ApplicationInsights.config.transform", + "content/ApplicationInsights.config.uninstall.xdt", + "icon.png", + "lib/net452/Microsoft.AI.ServerTelemetryChannel.dll", + "lib/net452/Microsoft.AI.ServerTelemetryChannel.pdb", + "lib/net452/Microsoft.AI.ServerTelemetryChannel.xml", + "lib/netstandard2.0/Microsoft.AI.ServerTelemetryChannel.dll", + "lib/netstandard2.0/Microsoft.AI.ServerTelemetryChannel.pdb", + "lib/netstandard2.0/Microsoft.AI.ServerTelemetryChannel.xml", + "microsoft.applicationinsights.windowsserver.telemetrychannel.2.22.0.nupkg.sha512", + "microsoft.applicationinsights.windowsserver.telemetrychannel.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting/2.1.1": { + "sha512": "MqYc0DUxrhAPnb5b4HFspxsoJT+gJlLsliSxIgovf4BsbmpaXQId0/pDiVzLuEbmks2w1/lRfY8w0lQOuK1jQQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml", + "microsoft.aspnetcore.hosting.2.1.1.nupkg.sha512", + "microsoft.aspnetcore.hosting.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": { + "sha512": "76cKcp2pWhvdV2TXTqMg/DyW7N6cDzTEhtL8vVWFShQN+Ylwv3eO/vUQr2BS3Hz4IZHEpL+FOo2T+MtymHDqDQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": { + "sha512": "+vD7HJYzAXNq17t+NgRkpS38cxuAyOBu8ixruOiA3nWsybozolUdALWiZ5QFtGRzajSLPFA2YsbO3NPcqoUwcw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.1.22": { + "sha512": "+Blk++1JWqghbl8+3azQmKhiNZA5wAepL9dY2I6KVmu2Ri07MAcvAVC888qUvO7yd7xgRgZOMfihezKg14O/2A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.1.22", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.1.22.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.1.1": { + "sha512": "kQUEVOU4loc8CPSb2WoHFTESqwIa8Ik7ysCBfTwzHAd0moWovc9JQLmhDIHlYLjHbyexqZAlkq/FPRUZqokebw==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.1.1.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.1.1": { + "sha512": "ncAgV+cqsWSqjLXFUTyObGh4Tr7ShYYs3uW8Q/YpRwZn7eLV7dux5Z6GLY+rsdzmIHiia3Q2NWbLULQi7aziHw==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.1.1.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.1.1": { + "sha512": "VklZ7hWgSvHBcDtwYYkdMdI/adlf7ebxTZ9kdzAhX+gUs5jSHE9mZlTamdgf9miSsxc1QjNazHXTDJdVPZKKTw==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.1.1.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.1.1": { + "sha512": "PGKIZt4+412Z/XPoSjvYu/QIbTxcAQuEFNoA1Pw8a9mgmO0ZhNBmfaNyhgXFf7Rq62kP0tT/2WXpxdcQhkFUPA==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/1.0.0": { + "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.1.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Memory/1.0.0": { + "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net451/Microsoft.Extensions.Caching.Memory.dll", + "lib/net451/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.1.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", + "type": "package", + "path": "microsoft.extensions.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": { + "sha512": "6xMxFIfKL+7J/jwlk8zV8I61sF3+DRG19iKQxnSfYQU+iMMjGbcWNCHFF/3MHf3o4sTZPZ8D6Io+GwKFc3TIZA==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/3.1.0": { + "sha512": "OjRJIkVxUFiVkr9a39AqVThft9QHoef4But5pDCydJOXJ4D/SkmzuW1tm6J2IXynxj6qfeAz9QTnzQAvOcGvzg==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netcoreapp3.1/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.3.1.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Configuration.Json/3.1.0": { + "sha512": "gBpBE1GoaCf1PKYC7u0Bd4mVZ/eR2bnOvn7u8GBXEy3JGar6sC3UVpVfTB9w+biLPtzcukZynBG9uchSBbLTNQ==", + "type": "package", + "path": "microsoft.extensions.configuration.json/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.3.1.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/3.1.0": { + "sha512": "KsvgrYp2fhNXoD9gqSu8jPK9Sbvaa7SqNtsLqHugJkCwFmgRvdz76z6Jz2tlFlC7wyMTZxwwtRF8WAorRQWTEA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netcoreapp3.1/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.3.1.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/3.1.0": { + "sha512": "tK5HZOmVv0kUYkonMjuSsxR0CBk+Rd/69QU3eOMv9FvODGZ2d0SR+7R+n8XIgBcCCoCHJBSsI4GPRaoN3Le4rA==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.3.1.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/3.1.0": { + "sha512": "DLigdcV0nYaT6/ly0rnfP80BnXq8NNd/h8/SkfY39uio7Bd9LauVntp6RcRh1Kj23N+uf80GgL7Win6P3BCtoQ==", + "type": "package", + "path": "microsoft.extensions.http/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/Microsoft.Extensions.Http.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.3.1.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "packageIcon.png" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.ApplicationInsights/2.22.0": { + "sha512": "5OmXub+9MyX8FbqgO+hBJRHk1iJ+UZUU20oIU3wo+RbmH6Jtsja79rriHLlzlrkMzWbpCkCzF6f4Yb6iGbsDag==", + "type": "package", + "path": "microsoft.extensions.logging.applicationinsights/2.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.0/Microsoft.Extensions.Logging.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.Extensions.Logging.ApplicationInsights.xml", + "microsoft.extensions.logging.applicationinsights.2.22.0.nupkg.sha512", + "microsoft.extensions.logging.applicationinsights.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Configuration/8.0.0": { + "sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/7.0.0": { + "sha512": "udvKco0sAVgYGTBnHUb0tY9JQzJ/nPDiv/8PIyz69wl1AibeCDZOLVVI+6156dPfHmJH7ws5oUJRiW4ZmAvuuA==", + "type": "package", + "path": "microsoft.extensions.objectpool/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.ObjectPool.dll", + "lib/net462/Microsoft.Extensions.ObjectPool.xml", + "lib/net7.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net7.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.7.0.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/8.0.0": { + "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "type": "package", + "path": "microsoft.extensions.options/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.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.8.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Net.Http.Headers/2.1.1": { + "sha512": "lPNIphl8b2EuhOE9dMH6EZDmu7pS882O+HMi5BJNsigxHaWlBrYxZHFZgE18cyaPp6SSZcTkKkuzfjV/RRQKlA==", + "type": "package", + "path": "microsoft.net.http.headers/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.1.1.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.0.1": { + "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", + "type": "package", + "path": "microsoft.netcore.platforms/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.0.1.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "type": "package", + "path": "microsoft.netcore.targets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.0.1.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "OpenTelemetry/1.7.0": { + "sha512": "HNmOJg++4FtEJGCIn1dCJcDkHRLNuLKU047owrGXUOfz/C/c5oZHOPKrowKVOy2jOOh/F9+HDshzeOk5NnQEZg==", + "type": "package", + "path": "opentelemetry/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/OpenTelemetry.dll", + "lib/net462/OpenTelemetry.xml", + "lib/net6.0/OpenTelemetry.dll", + "lib/net6.0/OpenTelemetry.xml", + "lib/net8.0/OpenTelemetry.dll", + "lib/net8.0/OpenTelemetry.xml", + "lib/netstandard2.0/OpenTelemetry.dll", + "lib/netstandard2.0/OpenTelemetry.xml", + "lib/netstandard2.1/OpenTelemetry.dll", + "lib/netstandard2.1/OpenTelemetry.xml", + "opentelemetry-icon-color.png", + "opentelemetry.1.7.0.nupkg.sha512", + "opentelemetry.nuspec" + ] + }, + "OpenTelemetry.Api/1.7.0": { + "sha512": "w5uDHl1Nm7R5igWu1QjewpdPzJSavua8NTI3+iThOdRNHD3cabox8JeIJ8LpBSXGHARSNFMJZ/Xr5EGRinMTMg==", + "type": "package", + "path": "opentelemetry.api/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/OpenTelemetry.Api.dll", + "lib/net462/OpenTelemetry.Api.xml", + "lib/net6.0/OpenTelemetry.Api.dll", + "lib/net6.0/OpenTelemetry.Api.xml", + "lib/net8.0/OpenTelemetry.Api.dll", + "lib/net8.0/OpenTelemetry.Api.xml", + "lib/netstandard2.0/OpenTelemetry.Api.dll", + "lib/netstandard2.0/OpenTelemetry.Api.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.1.7.0.nupkg.sha512", + "opentelemetry.api.nuspec" + ] + }, + "OpenTelemetry.Api.ProviderBuilderExtensions/1.7.0": { + "sha512": "fHLmJcRJk1dAwddjBgvqi/Grmr04hPo1DoFwTa6hxtSvAFOXPU56Xe9Sh2VXqz6Gstzp6TCju8z0Sob1t7BzSg==", + "type": "package", + "path": "opentelemetry.api.providerbuilderextensions/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net6.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net6.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", + "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", + "opentelemetry-icon-color.png", + "opentelemetry.api.providerbuilderextensions.1.7.0.nupkg.sha512", + "opentelemetry.api.providerbuilderextensions.nuspec" + ] + }, + "OpenTelemetry.Exporter.Console/1.7.0": { + "sha512": "9mcwpArzG7+5cLnG6marWdVD1TyoVR03WAjShvxADqgsEeuzLMClTlgXi41bTCAgxjYyiHV5l60fJwXTekiJdQ==", + "type": "package", + "path": "opentelemetry.exporter.console/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/OpenTelemetry.Exporter.Console.dll", + "lib/net462/OpenTelemetry.Exporter.Console.xml", + "lib/net6.0/OpenTelemetry.Exporter.Console.dll", + "lib/net6.0/OpenTelemetry.Exporter.Console.xml", + "lib/net8.0/OpenTelemetry.Exporter.Console.dll", + "lib/net8.0/OpenTelemetry.Exporter.Console.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.Console.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.Console.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.console.1.7.0.nupkg.sha512", + "opentelemetry.exporter.console.nuspec" + ] + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.7.0": { + "sha512": "ULGTxg4HdnJD+CIuiD15Uov4xVVqwpbNGFd075J3MT3lLM9XcwU4YRz7CCNmqIlehYaiZrGhUurXrI2LgZZL1Q==", + "type": "package", + "path": "opentelemetry.exporter.opentelemetryprotocol/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net6.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net6.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", + "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", + "opentelemetry-icon-color.png", + "opentelemetry.exporter.opentelemetryprotocol.1.7.0.nupkg.sha512", + "opentelemetry.exporter.opentelemetryprotocol.nuspec" + ] + }, + "OpenTelemetry.Extensions.Hosting/1.7.0": { + "sha512": "MbB7CWWqb7xHK0jTF9Gtvw/eLWdaKqzkE1XAwLe05xyskHuwJWAbZFax4nGLA71YkMWQNO5iPIBlirvYXOLMlg==", + "type": "package", + "path": "opentelemetry.extensions.hosting/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/OpenTelemetry.Extensions.Hosting.dll", + "lib/net462/OpenTelemetry.Extensions.Hosting.xml", + "lib/net6.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net6.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", + "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", + "opentelemetry-icon-color.png", + "opentelemetry.extensions.hosting.1.7.0.nupkg.sha512", + "opentelemetry.extensions.hosting.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.AspNetCore/1.7.1": { + "sha512": "H6Br/PNxNJ9s0BS/iW8n7e8EivS3ovXTQnzrGBsYBHA4tsI/YuclNpTAntHBdXP+ziwu4dNRRahOBFtAk2hiZw==", + "type": "package", + "path": "opentelemetry.instrumentation.aspnetcore/1.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net6.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/net7.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net7.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.aspnetcore.1.7.1.nupkg.sha512", + "opentelemetry.instrumentation.aspnetcore.nuspec" + ] + }, + "OpenTelemetry.Instrumentation.Http/1.7.1": { + "sha512": "NYzNHv8hEx48jouoXVyvAdxZn8fstCm1R+ItwSp3rEC/jGW+3L/TjfzEqiUSoNnIoUfnkCTSotqSBdZT3MD6hw==", + "type": "package", + "path": "opentelemetry.instrumentation.http/1.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/OpenTelemetry.Instrumentation.Http.dll", + "lib/net462/OpenTelemetry.Instrumentation.Http.xml", + "lib/net6.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net6.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/net8.0/OpenTelemetry.Instrumentation.Http.xml", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll", + "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.xml", + "opentelemetry-icon-color.png", + "opentelemetry.instrumentation.http.1.7.1.nupkg.sha512", + "opentelemetry.instrumentation.http.nuspec" + ] + }, + "prometheus-net/8.2.1": { + "sha512": "3wVgdEPOCBF752s2xps5T+VH+c9mJK8S8GKEDg49084P6JZMumTZI5Te6aJ9MQpX0sx7om6JOnBpIi7ZBmmiDQ==", + "type": "package", + "path": "prometheus-net/8.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Prometheus.NetStandard.dll", + "lib/net462/Prometheus.NetStandard.xml", + "lib/net6.0/Prometheus.NetStandard.dll", + "lib/net6.0/Prometheus.NetStandard.xml", + "lib/net7.0/Prometheus.NetStandard.dll", + "lib/net7.0/Prometheus.NetStandard.xml", + "lib/netstandard2.0/Prometheus.NetStandard.dll", + "lib/netstandard2.0/Prometheus.NetStandard.xml", + "prometheus-net-logo.png", + "prometheus-net.8.2.1.nupkg.sha512", + "prometheus-net.nuspec" + ] + }, + "prometheus-net.AspNetCore/8.2.1": { + "sha512": "/4TfTvbwIDqpaKTiWvEsjUywiHYF9zZvGZF5sK15avoDsUO/WPQbKsF8TiMaesuphdFQPK2z52P0zk6j26V0rQ==", + "type": "package", + "path": "prometheus-net.aspnetcore/8.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Prometheus.AspNetCore.dll", + "lib/net6.0/Prometheus.AspNetCore.xml", + "prometheus-net-logo.png", + "prometheus-net.aspnetcore.8.2.1.nupkg.sha512", + "prometheus-net.aspnetcore.nuspec" + ] + }, + "Serilog/3.1.1": { + "sha512": "P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", + "type": "package", + "path": "serilog/3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.dll", + "lib/net462/Serilog.xml", + "lib/net471/Serilog.dll", + "lib/net471/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/net6.0/Serilog.dll", + "lib/net6.0/Serilog.xml", + "lib/net7.0/Serilog.dll", + "lib/net7.0/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.3.1.1.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/8.0.1": { + "sha512": "B/X+wAfS7yWLVOTD83B+Ip9yl4MkhioaXj90JSoWi1Ayi8XHepEnsBdrkojg08eodCnmOKmShFUN2GgEc6c0CQ==", + "type": "package", + "path": "serilog.aspnetcore/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.AspNetCore.dll", + "lib/net462/Serilog.AspNetCore.xml", + "lib/net6.0/Serilog.AspNetCore.dll", + "lib/net6.0/Serilog.AspNetCore.xml", + "lib/net7.0/Serilog.AspNetCore.dll", + "lib/net7.0/Serilog.AspNetCore.xml", + "lib/net8.0/Serilog.AspNetCore.dll", + "lib/net8.0/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "serilog.aspnetcore.8.0.1.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "sha512": "db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==", + "type": "package", + "path": "serilog.extensions.hosting/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Extensions.Hosting.dll", + "lib/net462/Serilog.Extensions.Hosting.xml", + "lib/net6.0/Serilog.Extensions.Hosting.dll", + "lib/net6.0/Serilog.Extensions.Hosting.xml", + "lib/net7.0/Serilog.Extensions.Hosting.dll", + "lib/net7.0/Serilog.Extensions.Hosting.xml", + "lib/net8.0/Serilog.Extensions.Hosting.dll", + "lib/net8.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.8.0.0.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/8.0.0": { + "sha512": "YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "type": "package", + "path": "serilog.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Extensions.Logging.dll", + "lib/net462/Serilog.Extensions.Logging.xml", + "lib/net6.0/Serilog.Extensions.Logging.dll", + "lib/net6.0/Serilog.Extensions.Logging.xml", + "lib/net7.0/Serilog.Extensions.Logging.dll", + "lib/net7.0/Serilog.Extensions.Logging.xml", + "lib/net8.0/Serilog.Extensions.Logging.dll", + "lib/net8.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.1/Serilog.Extensions.Logging.dll", + "lib/netstandard2.1/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.8.0.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/2.0.0": { + "sha512": "ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==", + "type": "package", + "path": "serilog.formatting.compact/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Formatting.Compact.dll", + "lib/net462/Serilog.Formatting.Compact.xml", + "lib/net471/Serilog.Formatting.Compact.dll", + "lib/net471/Serilog.Formatting.Compact.xml", + "lib/net6.0/Serilog.Formatting.Compact.dll", + "lib/net6.0/Serilog.Formatting.Compact.xml", + "lib/net7.0/Serilog.Formatting.Compact.dll", + "lib/net7.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.1/Serilog.Formatting.Compact.dll", + "lib/netstandard2.1/Serilog.Formatting.Compact.xml", + "serilog-extension-nuget.png", + "serilog.formatting.compact.2.0.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Settings.Configuration/8.0.0": { + "sha512": "nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==", + "type": "package", + "path": "serilog.settings.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Settings.Configuration.dll", + "lib/net462/Serilog.Settings.Configuration.xml", + "lib/net6.0/Serilog.Settings.Configuration.dll", + "lib/net6.0/Serilog.Settings.Configuration.xml", + "lib/net7.0/Serilog.Settings.Configuration.dll", + "lib/net7.0/Serilog.Settings.Configuration.xml", + "lib/net8.0/Serilog.Settings.Configuration.dll", + "lib/net8.0/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.8.0.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/5.0.1": { + "sha512": "6Jt8jl9y2ey8VV7nVEUAyjjyxjAQuvd5+qj4XYAT9CwcsvR70HHULGBeD+K2WCALFXf7CFsNQT4lON6qXcu2AA==", + "type": "package", + "path": "serilog.sinks.console/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Sinks.Console.dll", + "lib/net462/Serilog.Sinks.Console.xml", + "lib/net471/Serilog.Sinks.Console.dll", + "lib/net471/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/net6.0/Serilog.Sinks.Console.dll", + "lib/net6.0/Serilog.Sinks.Console.xml", + "lib/net7.0/Serilog.Sinks.Console.dll", + "lib/net7.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.1/Serilog.Sinks.Console.dll", + "lib/netstandard2.1/Serilog.Sinks.Console.xml", + "serilog.sinks.console.5.0.1.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "type": "package", + "path": "system.collections/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.0.11.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "type": "package", + "path": "system.diagnostics.debug/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.0.11.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "sha512": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "type": "package", + "path": "system.globalization/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.0.11.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "type": "package", + "path": "system.io/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.1.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/4.7.0": { + "sha512": "vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "type": "package", + "path": "system.linq/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.1.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "type": "package", + "path": "system.reflection/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.1.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "type": "package", + "path": "system.reflection.primitives/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.0.1.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "type": "package", + "path": "system.resources.resourcemanager/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.0.1.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "type": "package", + "path": "system.runtime/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.1.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "type": "package", + "path": "system.runtime.extensions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.1.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "type": "package", + "path": "system.text.encoding/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.0.11.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "type": "package", + "path": "system.threading/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.0.11.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "type": "package", + "path": "system.threading.tasks/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.0.11.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Microsoft.ApplicationInsights.AspNetCore >= 2.22.0", + "Microsoft.Extensions.Logging.ApplicationInsights >= 2.22.0", + "OpenTelemetry.Exporter.Console >= 1.7.0", + "OpenTelemetry.Exporter.OpenTelemetryProtocol >= 1.7.0", + "OpenTelemetry.Extensions.Hosting >= 1.7.0", + "OpenTelemetry.Instrumentation.AspNetCore >= 1.7.1", + "OpenTelemetry.Instrumentation.Http >= 1.7.1", + "Serilog.AspNetCore >= 8.0.1", + "Serilog.Settings.Configuration >= 8.0.0", + "Serilog.Sinks.Console >= 5.0.1", + "Serilog.Sinks.File >= 5.0.0", + "prometheus-net.AspNetCore >= 8.2.1" + ] + }, + "packageFolders": { + "/home/robert/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "projectName": "BlazorApp", + "projectPath": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "packagesPath": "/home/robert/.nuget/packages/", + "outputPath": "/home/robert/Documents/repos/azure-web/BlazorApp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/robert/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.ApplicationInsights.AspNetCore": { + "target": "Package", + "version": "[2.22.0, )" + }, + "Microsoft.Extensions.Logging.ApplicationInsights": { + "target": "Package", + "version": "[2.22.0, )" + }, + "OpenTelemetry.Exporter.Console": { + "target": "Package", + "version": "[1.7.0, )" + }, + "OpenTelemetry.Exporter.OpenTelemetryProtocol": { + "target": "Package", + "version": "[1.7.0, )" + }, + "OpenTelemetry.Extensions.Hosting": { + "target": "Package", + "version": "[1.7.0, )" + }, + "OpenTelemetry.Instrumentation.AspNetCore": { + "target": "Package", + "version": "[1.7.1, )" + }, + "OpenTelemetry.Instrumentation.Http": { + "target": "Package", + "version": "[1.7.1, )" + }, + "Serilog.AspNetCore": { + "target": "Package", + "version": "[8.0.1, )" + }, + "Serilog.Settings.Configuration": { + "target": "Package", + "version": "[8.0.0, )" + }, + "Serilog.Sinks.Console": { + "target": "Package", + "version": "[5.0.1, )" + }, + "Serilog.Sinks.File": { + "target": "Package", + "version": "[5.0.0, )" + }, + "prometheus-net.AspNetCore": { + "target": "Package", + "version": "[8.2.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.22, 8.0.22]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[8.0.22, 8.0.22]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.100/PortableRuntimeIdentifierGraph.json" + } + } + }, + "logs": [ + { + "code": "NU1902", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'OpenTelemetry.Instrumentation.AspNetCore' 1.7.1 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-vh2m-22xx-q94f", + "libraryId": "OpenTelemetry.Instrumentation.AspNetCore", + "targetGraphs": [ + "net8.0" + ] + }, + { + "code": "NU1902", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'OpenTelemetry.Instrumentation.Http' 1.7.1 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-vh2m-22xx-q94f", + "libraryId": "OpenTelemetry.Instrumentation.Http", + "targetGraphs": [ + "net8.0" + ] + } + ] +} \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/obj/project.nuget.cache b/GrafanaBlazor/BlazorApp/obj/project.nuget.cache new file mode 100644 index 0000000..0b652bd --- /dev/null +++ b/GrafanaBlazor/BlazorApp/obj/project.nuget.cache @@ -0,0 +1,131 @@ +{ + "version": 2, + "dgSpecHash": "f9jnpdTI+sg=", + "success": true, + "projectFilePath": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "expectedPackageFiles": [ + "/home/robert/.nuget/packages/google.protobuf/3.22.5/google.protobuf.3.22.5.nupkg.sha512", + "/home/robert/.nuget/packages/grpc.core.api/2.52.0/grpc.core.api.2.52.0.nupkg.sha512", + "/home/robert/.nuget/packages/grpc.net.client/2.52.0/grpc.net.client.2.52.0.nupkg.sha512", + "/home/robert/.nuget/packages/grpc.net.common/2.52.0/grpc.net.common.2.52.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.applicationinsights/2.22.0/microsoft.applicationinsights.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.applicationinsights.aspnetcore/2.22.0/microsoft.applicationinsights.aspnetcore.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.applicationinsights.dependencycollector/2.22.0/microsoft.applicationinsights.dependencycollector.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.applicationinsights.eventcountercollector/2.22.0/microsoft.applicationinsights.eventcountercollector.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.applicationinsights.perfcountercollector/2.22.0/microsoft.applicationinsights.perfcountercollector.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.applicationinsights.windowsserver/2.22.0/microsoft.applicationinsights.windowsserver.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.applicationinsights.windowsserver.telemetrychannel/2.22.0/microsoft.applicationinsights.windowsserver.telemetrychannel.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.hosting/2.1.1/microsoft.aspnetcore.hosting.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.1.1/microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.1.1/microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.http/2.1.22/microsoft.aspnetcore.http.2.1.22.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.1.1/microsoft.aspnetcore.http.abstractions.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.http.extensions/2.1.1/microsoft.aspnetcore.http.extensions.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.http.features/2.1.1/microsoft.aspnetcore.http.features.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.webutilities/2.1.1/microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.caching.abstractions/1.0.0/microsoft.extensions.caching.abstractions.1.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.caching.memory/1.0.0/microsoft.extensions.caching.memory.1.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.configuration/8.0.0/microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.configuration.binder/8.0.0/microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.configuration.environmentvariables/2.1.1/microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.configuration.fileextensions/3.1.0/microsoft.extensions.configuration.fileextensions.3.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.configuration.json/3.1.0/microsoft.extensions.configuration.json.3.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.0/microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.0/microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.dependencymodel/8.0.0/microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.diagnostics.abstractions/8.0.0/microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.fileproviders.abstractions/8.0.0/microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.fileproviders.physical/3.1.0/microsoft.extensions.fileproviders.physical.3.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.filesystemglobbing/3.1.0/microsoft.extensions.filesystemglobbing.3.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.hosting.abstractions/8.0.0/microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.http/3.1.0/microsoft.extensions.http.3.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.logging/8.0.0/microsoft.extensions.logging.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.0/microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.logging.applicationinsights/2.22.0/microsoft.extensions.logging.applicationinsights.2.22.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.logging.configuration/8.0.0/microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.objectpool/7.0.0/microsoft.extensions.objectpool.7.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.options/8.0.0/microsoft.extensions.options.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.options.configurationextensions/8.0.0/microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.extensions.primitives/8.0.0/microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.net.http.headers/2.1.1/microsoft.net.http.headers.2.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry/1.7.0/opentelemetry.1.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry.api/1.7.0/opentelemetry.api.1.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry.api.providerbuilderextensions/1.7.0/opentelemetry.api.providerbuilderextensions.1.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry.exporter.console/1.7.0/opentelemetry.exporter.console.1.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry.exporter.opentelemetryprotocol/1.7.0/opentelemetry.exporter.opentelemetryprotocol.1.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry.extensions.hosting/1.7.0/opentelemetry.extensions.hosting.1.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry.instrumentation.aspnetcore/1.7.1/opentelemetry.instrumentation.aspnetcore.1.7.1.nupkg.sha512", + "/home/robert/.nuget/packages/opentelemetry.instrumentation.http/1.7.1/opentelemetry.instrumentation.http.1.7.1.nupkg.sha512", + "/home/robert/.nuget/packages/prometheus-net/8.2.1/prometheus-net.8.2.1.nupkg.sha512", + "/home/robert/.nuget/packages/prometheus-net.aspnetcore/8.2.1/prometheus-net.aspnetcore.8.2.1.nupkg.sha512", + "/home/robert/.nuget/packages/serilog/3.1.1/serilog.3.1.1.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.aspnetcore/8.0.1/serilog.aspnetcore.8.0.1.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.extensions.hosting/8.0.0/serilog.extensions.hosting.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.extensions.logging/8.0.0/serilog.extensions.logging.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.formatting.compact/2.0.0/serilog.formatting.compact.2.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.settings.configuration/8.0.0/serilog.settings.configuration.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.sinks.console/5.0.1/serilog.sinks.console.5.0.1.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.buffers/4.5.0/system.buffers.4.5.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.collections/4.0.11/system.collections.4.0.11.nupkg.sha512", + "/home/robert/.nuget/packages/system.configuration.configurationmanager/6.0.0/system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg.sha512", + "/home/robert/.nuget/packages/system.diagnostics.diagnosticsource/8.0.0/system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.diagnostics.performancecounter/6.0.0/system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.globalization/4.0.11/system.globalization.4.0.11.nupkg.sha512", + "/home/robert/.nuget/packages/system.io/4.1.0/system.io.4.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.io.filesystem.accesscontrol/4.7.0/system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.linq/4.1.0/system.linq.4.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512", + "/home/robert/.nuget/packages/system.reflection/4.1.0/system.reflection.4.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg.sha512", + "/home/robert/.nuget/packages/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg.sha512", + "/home/robert/.nuget/packages/system.runtime/4.1.0/system.runtime.4.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg.sha512", + "/home/robert/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.text.json/8.0.0/system.text.json.8.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/system.threading/4.0.11/system.threading.4.0.11.nupkg.sha512", + "/home/robert/.nuget/packages/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg.sha512", + "/home/robert/.nuget/packages/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.22/microsoft.aspnetcore.app.ref.8.0.22.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.netcore.app.host.linux-x64/8.0.22/microsoft.netcore.app.host.linux-x64.8.0.22.nupkg.sha512" + ], + "logs": [ + { + "code": "NU1902", + "level": "Warning", + "message": "Package 'OpenTelemetry.Instrumentation.AspNetCore' 1.7.1 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-vh2m-22xx-q94f", + "projectPath": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "warningLevel": 1, + "filePath": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "libraryId": "OpenTelemetry.Instrumentation.AspNetCore", + "targetGraphs": [ + "net8.0" + ] + }, + { + "code": "NU1902", + "level": "Warning", + "message": "Package 'OpenTelemetry.Instrumentation.Http' 1.7.1 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-vh2m-22xx-q94f", + "projectPath": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "warningLevel": 1, + "filePath": "/home/robert/Documents/repos/azure-web/BlazorApp/BlazorApp.csproj", + "libraryId": "OpenTelemetry.Instrumentation.Http", + "targetGraphs": [ + "net8.0" + ] + } + ] +} \ No newline at end of file diff --git a/GrafanaBlazor/BlazorApp/wwwroot/css/app.css b/GrafanaBlazor/BlazorApp/wwwroot/css/app.css new file mode 100644 index 0000000..1c8ac43 --- /dev/null +++ b/GrafanaBlazor/BlazorApp/wwwroot/css/app.css @@ -0,0 +1,144 @@ +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +h1:focus { + outline: none; +} + +a, .btn-link { + color: #006bb7; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { + box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; +} + +.content { + padding-top: 1.1rem; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid red; +} + +.validation-message { + color: red; +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-color: #f7f7f7; +} + +.top-row { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + +.nav-scrollable { + display: none; +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + +.nav-item:first-of-type { + padding-top: 1rem; +} + +.nav-item:last-of-type { + padding-bottom: 1rem; +} + +.nav-item a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + text-decoration: none; +} + +.nav-item a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .nav-scrollable { + display: block; + } + + main > div { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/Components/App.razor b/GrafanaBlazor/FluentBlazorApp/Components/App.razor new file mode 100644 index 0000000..4368dcc --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/App.razor @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Layout/MainLayout.razor b/GrafanaBlazor/FluentBlazorApp/Components/Layout/MainLayout.razor new file mode 100644 index 0000000..f71842e --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Layout/MainLayout.razor @@ -0,0 +1,26 @@ +@inherits LayoutComponentBase + + + + FluentBlazorApp + + + + +
+ @Body +
+
+
+ + Documentation and demos + + About Blazor + +
+ +
+ An unhandled error has occurred. + Reload + 🗙 +
diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Layout/NavMenu.razor b/GrafanaBlazor/FluentBlazorApp/Components/Layout/NavMenu.razor new file mode 100644 index 0000000..2de2ebc --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Layout/NavMenu.razor @@ -0,0 +1,17 @@ +@rendermode InteractiveServer + + + +@code { + private bool expanded = true; +} diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor b/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor new file mode 100644 index 0000000..58445c3 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor @@ -0,0 +1,31 @@ + + + +
+ +

+ Rejoining the server... +

+

+ Rejoin failed... trying again in seconds. +

+

+ Failed to rejoin.
Please retry or reload the page. +

+ +

+ The session has been paused by the server. +

+ +

+ Failed to resume the session.
Please reload the page. +

+
+
diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor.css b/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor.css new file mode 100644 index 0000000..af38c96 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor.css @@ -0,0 +1,157 @@ +.components-reconnect-first-attempt-visible, +.components-reconnect-repeated-attempt-visible, +.components-reconnect-failed-visible, +.components-pause-visible, +.components-resume-failed-visible, +.components-rejoining-animation { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible, +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation, +#components-reconnect-modal.components-reconnect-paused .components-pause-visible, +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible, +#components-reconnect-modal.components-reconnect-retrying, +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible, +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation, +#components-reconnect-modal.components-reconnect-failed, +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible { + display: block; +} + + +#components-reconnect-modal { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active { + background-color: #6b9ed2; + } + +.components-rejoining-animation { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2) { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js b/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js new file mode 100644 index 0000000..975d0a4 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js @@ -0,0 +1,63 @@ +// 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 { + location.reload(); + } +} + +async function retryWhenDocumentBecomesVisible() { + if (document.visibilityState === "visible") { + await retry(); + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Pages/Counter.razor b/GrafanaBlazor/FluentBlazorApp/Components/Pages/Counter.razor new file mode 100644 index 0000000..1cdf5bd --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Pages/Counter.razor @@ -0,0 +1,21 @@ +@page "/counter" +@rendermode InteractiveServer + +Counter + +

Counter

+ +
+ Current count: @currentCount +
+ +Click me + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Pages/Error.razor b/GrafanaBlazor/FluentBlazorApp/Components/Pages/Error.razor new file mode 100644 index 0000000..7a84043 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/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/GrafanaBlazor/FluentBlazorApp/Components/Pages/Home.razor b/GrafanaBlazor/FluentBlazorApp/Components/Pages/Home.razor new file mode 100644 index 0000000..858da0c --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Pages/Home.razor @@ -0,0 +1,7 @@ +@page "/" + +Home + +

Hello, world!

+ +Welcome to your new Fluent Blazor app. \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Pages/NotFound.razor b/GrafanaBlazor/FluentBlazorApp/Components/Pages/NotFound.razor new file mode 100644 index 0000000..f74a7a3 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Pages/NotFound.razor @@ -0,0 +1,5 @@ +@page "/not-found" +@layout MainLayout + +

Not Found

+

Sorry, the content you are looking for does not exist.

\ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/Components/Pages/Weather.razor b/GrafanaBlazor/FluentBlazorApp/Components/Pages/Weather.razor new file mode 100644 index 0000000..4838de8 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Pages/Weather.razor @@ -0,0 +1,43 @@ +@page "/weather" +@attribute [StreamRendering] + +Weather + +

Weather

+ +

This component demonstrates showing data.

+ + + + + + + + + +@code { + private IQueryable? forecasts; + + protected override async Task OnInitializedAsync() + { + // Simulate asynchronous loading to demonstrate streaming rendering + 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)] + }).AsQueryable(); + } + + private 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/GrafanaBlazor/FluentBlazorApp/Components/Routes.razor b/GrafanaBlazor/FluentBlazorApp/Components/Routes.razor new file mode 100644 index 0000000..a629ea4 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/Routes.razor @@ -0,0 +1,5 @@ + + + + + diff --git a/GrafanaBlazor/FluentBlazorApp/Components/_Imports.razor b/GrafanaBlazor/FluentBlazorApp/Components/_Imports.razor new file mode 100644 index 0000000..0d857a2 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Components/_Imports.razor @@ -0,0 +1,13 @@ +@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.FluentUI.AspNetCore.Components +@using Icons = Microsoft.FluentUI.AspNetCore.Components.Icons +@using Microsoft.JSInterop +@using FluentBlazorApp +@using FluentBlazorApp.Components +@using FluentBlazorApp.Components.Layout diff --git a/GrafanaBlazor/FluentBlazorApp/FluentBlazorApp.csproj b/GrafanaBlazor/FluentBlazorApp/FluentBlazorApp.csproj new file mode 100644 index 0000000..25f0714 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/FluentBlazorApp.csproj @@ -0,0 +1,14 @@ + + + + net10.0 + enable + enable + true + + + + + + + diff --git a/GrafanaBlazor/FluentBlazorApp/Program.cs b/GrafanaBlazor/FluentBlazorApp/Program.cs new file mode 100644 index 0000000..7b331e3 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Program.cs @@ -0,0 +1,29 @@ +using FluentBlazorApp.Components; +using Microsoft.FluentUI.AspNetCore.Components; + +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents(); +builder.Services.AddFluentUIComponents(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (!app.Environment.IsDevelopment()) +{ + 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(); + +app.Run(); diff --git a/GrafanaBlazor/FluentBlazorApp/Properties/launchSettings.json b/GrafanaBlazor/FluentBlazorApp/Properties/launchSettings.json new file mode 100644 index 0000000..7ed2ba5 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:5215", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7002;http://localhost:5215", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } + } diff --git a/GrafanaBlazor/FluentBlazorApp/appsettings.Development.json b/GrafanaBlazor/FluentBlazorApp/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/appsettings.json b/GrafanaBlazor/FluentBlazorApp/appsettings.json new file mode 100644 index 0000000..4d56694 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp new file mode 100755 index 0000000..3021ff1 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.deps.json b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.deps.json new file mode 100644 index 0000000..f4dd3ef --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.deps.json @@ -0,0 +1,76 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "FluentBlazorApp/1.0.0": { + "dependencies": { + "Microsoft.FluentUI.AspNetCore.Components": "4.13.2", + "Microsoft.FluentUI.AspNetCore.Components.Icons": "4.13.2" + }, + "runtime": { + "FluentBlazorApp.dll": {} + } + }, + "Microsoft.FluentUI.AspNetCore.Components/4.13.2": { + "runtime": { + "lib/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll": { + "assemblyVersion": "4.13.2.25331", + "fileVersion": "4.13.2.25331" + } + } + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons/4.13.2": { + "dependencies": { + "Microsoft.FluentUI.AspNetCore.Components": "4.13.2" + }, + "runtime": { + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll": { + "assemblyVersion": "4.13.2.25331", + "fileVersion": "4.13.2.25331" + }, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll": { + "assemblyVersion": "4.13.2.25331", + "fileVersion": "4.13.2.25331" + }, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll": { + "assemblyVersion": "4.13.2.25331", + "fileVersion": "4.13.2.25331" + }, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll": { + "assemblyVersion": "4.13.2.25331", + "fileVersion": "4.13.2.25331" + }, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll": { + "assemblyVersion": "4.13.2.25331", + "fileVersion": "4.13.2.25331" + } + } + } + } + }, + "libraries": { + "FluentBlazorApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.FluentUI.AspNetCore.Components/4.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OqJFJiIz32BRBcxVCLX51s6/SNXVe6X16kKBcwxb7ZzZ14w1pT2OcHtqPxfj7NYZzAyA9gpX5EhvAdGHURYD7g==", + "path": "microsoft.fluentui.aspnetcore.components/4.13.2", + "hashPath": "microsoft.fluentui.aspnetcore.components.4.13.2.nupkg.sha512" + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons/4.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1AJ7yh79ELaPzcAdAwb7W0qvpTyVzh3xYGjw8Ibx+azujmSiUk5G0E7i2F4CQybVsAVN1f6l/CKO08VWKNGi9w==", + "path": "microsoft.fluentui.aspnetcore.components.icons/4.13.2", + "hashPath": "microsoft.fluentui.aspnetcore.components.icons.4.13.2.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.dll b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.dll new file mode 100644 index 0000000..f0a2f61 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.pdb b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.pdb new file mode 100644 index 0000000..6f54dfa Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.pdb differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.runtimeconfig.json b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.runtimeconfig.json new file mode 100644 index 0000000..8b09022 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.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/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.endpoints.json b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.endpoints.json new file mode 100644 index 0000000..999ac7d --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y="}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001005025126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"label","Value":"FluentBlazorApp.styles.css"},{"Name":"original-resource","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css","AssetFile":"FluentBlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4369"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"label","Value":"FluentBlazorApp.styles.css"}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css.gz","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og="},{"Name":"label","Value":"FluentBlazorApp.styles.css.gz"}]},{"Route":"FluentBlazorApp.modules.json","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010638297872"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"original-resource","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""}]},{"Route":"FluentBlazorApp.modules.json","AssetFile":"FluentBlazorApp.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="}]},{"Route":"FluentBlazorApp.modules.json.gz","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo="}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010638297872"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"label","Value":"FluentBlazorApp.modules.json"},{"Name":"original-resource","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json","AssetFile":"FluentBlazorApp.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"label","Value":"FluentBlazorApp.modules.json"}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json.gz","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo="},{"Name":"label","Value":"FluentBlazorApp.modules.json.gz"}]},{"Route":"FluentBlazorApp.styles.css","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001005025126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"original-resource","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""}]},{"Route":"FluentBlazorApp.styles.css","AssetFile":"FluentBlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4369"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="}]},{"Route":"FluentBlazorApp.styles.css.gz","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.l5v3n1o5hs.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"259"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l5v3n1o5hs"},{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"259"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005319148936"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"original-resource","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.dpoev2zj9b.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dpoev2zj9b"},{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003731343284"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"267"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"original-resource","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"267"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.73nt9uxv2t.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"73nt9uxv2t"},{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000744047619"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1343"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"original-resource","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1343"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.p6kf5zqzit.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"522"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p6kf5zqzit"},{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"522"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003164556962"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"original-resource","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"368"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004444444444"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"original-resource","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.zjzit57lox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"368"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjzit57lox"},{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.dvdt7c1hdi.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17719"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dvdt7c1hdi"},{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17719"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000256081946"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3904"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"original-resource","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3904"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.h5k564t0jv.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"247"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h5k564t0jv"},{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"247"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005494505495"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"181"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"original-resource","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"181"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.7i47nr1axg.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7i47nr1axg"},{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001321003963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"original-resource","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.oy1cuw4jhq.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oy1cuw4jhq"},{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008064516129"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"123"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"original-resource","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"123"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.iy34mpf72d.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iy34mpf72d"},{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004273504274"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"233"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"original-resource","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"233"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.hi1gwvth64.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3005"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hi1gwvth64"},{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3005"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001321003963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"original-resource","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.5pcucyxosc.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"348"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5pcucyxosc"},{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"348"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.007042253521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"original-resource","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2813"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001199040767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"833"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"original-resource","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"833"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.vjluklws0l.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2813"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vjluklws0l"},{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.9juufzcgdk.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9juufzcgdk"},{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001108647450"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"901"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"original-resource","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"901"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"473"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003937007874"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"253"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"original-resource","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"253"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.xp2f0e0rh3.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"473"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xp2f0e0rh3"},{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.ikjxvulr4w.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2344"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ikjxvulr4w"},{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2344"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001177856302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"848"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"original-resource","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"848"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.afevzs963z.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1483"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"afevzs963z"},{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1483"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001845018450"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"541"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"original-resource","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"541"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.mmp1yy7un5.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmp1yy7un5"},{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.007246376812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"original-resource","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.ntzi26y3om.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6126"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ntzi26y3om"},{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6126"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000622665006"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1605"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"original-resource","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1605"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.9fmja7pljs.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5345"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9fmja7pljs"},{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5345"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000983284169"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1016"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"original-resource","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1016"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6575"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000572082380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1747"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"original-resource","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1747"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.rgycuwl3sw.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6575"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rgycuwl3sw"},{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.kjm33rwg1a.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1977"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kjm33rwg1a"},{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1977"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001531393568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"652"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"original-resource","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"652"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.awzanx0pu8.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6841"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"awzanx0pu8"},{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6841"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000544365814"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"original-resource","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.m0sdc2vg34.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"917"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m0sdc2vg34"},{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"917"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002985074627"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"334"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"original-resource","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"334"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.0b0bj86z40.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"445"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0b0bj86z40"},{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"445"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003496503497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"285"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"original-resource","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"285"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.e5lgg05xwp.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5lgg05xwp"},{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004464285714"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"223"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"original-resource","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"223"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.ki10xp5gks.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1325"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ki10xp5gks"},{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1325"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002114164905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"472"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"original-resource","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"472"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6140"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000745712155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"original-resource","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.s9hcthfn4x.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6140"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9hcthfn4x"},{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.idf8r2y2gj.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"526"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"idf8r2y2gj"},{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"526"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003412969283"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"original-resource","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.btwuipzwbp.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"btwuipzwbp"},{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002150537634"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"464"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"original-resource","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"464"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001953125000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"511"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"original-resource","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"511"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.v95crb0bvb.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v95crb0bvb"},{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.b0dyrub9as.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"730"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0dyrub9as"},{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"730"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003571428571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"original-resource","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"103506"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:18:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070526835"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14178"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="},{"Name":"original-resource","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"103506"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:18:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ewdlgswx1m"},{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14178"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"395058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010943194"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91380"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE="},{"Name":"original-resource","Value":"\"kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1022"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001736111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"575"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4="},{"Name":"original-resource","Value":"\"gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"575"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91380"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1318140"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003583215"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279078"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8="},{"Name":"original-resource","Value":"\"gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279078"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.1dlotxxwer.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1dlotxxwer"},{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458295142"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2181"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="},{"Name":"original-resource","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2181"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.f8c5bd5212.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f8c5bd5212"},{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001941747573"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"514"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="},{"Name":"original-resource","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"514"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3439"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000821692687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1216"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="},{"Name":"original-resource","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1216"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.sc1npuf73a.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3439"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sc1npuf73a"},{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"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":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4="}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.u1n4jc5v46.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":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.j8lzlu28q6.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":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s="},{"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":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"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":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s="}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392156863"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"original-resource","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="}]},{"Route":"app.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs="}]},{"Route":"app.g5ndc3bl4h.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392156863"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""}]},{"Route":"app.g5ndc3bl4h.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"label","Value":"app.css"}]},{"Route":"app.g5ndc3bl4h.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"favicon.a8m5cweeeb.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000182415177"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""}]},{"Route":"favicon.a8m5cweeeb.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":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.a8m5cweeeb.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":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000182415177"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"original-resource","Value":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""}]},{"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":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="}]},{"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":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44="}]}]} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.runtime.json b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.runtime.json new file mode 100644 index 0000000..16cfbac --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/","/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/","/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz"},"Patterns":null},"FluentBlazorApp.modules.json":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jsmodules.build.manifest.json"},"Patterns":null},"FluentBlazorApp.modules.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz"},"Patterns":null},"FluentBlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"FluentBlazorApp.styles.css"},"Patterns":null},"FluentBlazorApp.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.FluentUI.AspNetCore.Components":{"Children":{"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz"},"Patterns":null},"css":{"Children":{"reboot.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"css/reboot.css"},"Patterns":null},"reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"initializersLoader.webview.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"js/initializersLoader.webview.js"},"Patterns":null},"initializersLoader.webview.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz"},"Patterns":null},"loading-theme.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"js/loading-theme.js"},"Patterns":null},"loading-theme.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Accordion":{"Children":{"FluentAccordionItem.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Accordion/FluentAccordionItem.razor.js"},"Patterns":null},"FluentAccordionItem.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Anchor":{"Children":{"FluentAnchor.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Anchor/FluentAnchor.razor.js"},"Patterns":null},"FluentAnchor.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"AnchoredRegion":{"Children":{"FluentAnchoredRegion.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/AnchoredRegion/FluentAnchoredRegion.razor.js"},"Patterns":null},"FluentAnchoredRegion.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Button":{"Children":{"FluentButton.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Button/FluentButton.razor.js"},"Patterns":null},"FluentButton.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox":{"Children":{"FluentCheckbox.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Checkbox/FluentCheckbox.razor.js"},"Patterns":null},"FluentCheckbox.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DataGrid":{"Children":{"FluentDataGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DataGrid/FluentDataGrid.razor.js"},"Patterns":null},"FluentDataGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DateTime":{"Children":{"FluentTimePicker.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DateTime/FluentTimePicker.razor.js"},"Patterns":null},"FluentTimePicker.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DesignSystemProvider":{"Children":{"FluentDesignTheme.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DesignSystemProvider/FluentDesignTheme.razor.js"},"Patterns":null},"FluentDesignTheme.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Dialog":{"Children":{"FluentDialogProvider.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Dialog/FluentDialogProvider.razor.js"},"Patterns":null},"FluentDialogProvider.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Divider":{"Children":{"FluentDivider.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Divider/FluentDivider.razor.js"},"Patterns":null},"FluentDivider.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Grid":{"Children":{"FluentGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Grid/FluentGrid.razor.js"},"Patterns":null},"FluentGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"HorizontalScroll":{"Children":{"FluentHorizontalScroll.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},"Patterns":null},"FluentHorizontalScroll.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"InputFile":{"Children":{"FluentInputFile.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/InputFile/FluentInputFile.razor.js"},"Patterns":null},"FluentInputFile.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyCode":{"Children":{"FluentKeyCode.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/KeyCode/FluentKeyCode.razor.js"},"Patterns":null},"FluentKeyCode.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Label":{"Children":{"FluentInputLabel.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Label/FluentInputLabel.razor.js"},"Patterns":null},"FluentInputLabel.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"List":{"Children":{"FluentAutocomplete.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/FluentAutocomplete.razor.js"},"Patterns":null},"FluentAutocomplete.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz"},"Patterns":null},"FluentCombobox.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/FluentCombobox.razor.js"},"Patterns":null},"FluentCombobox.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tb98bamshq-{0}-afevzs963z-afevzs963z.gz"},"Patterns":null},"ListComponentBase.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/ListComponentBase.razor.js"},"Patterns":null},"ListComponentBase.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Menu":{"Children":{"FluentMenu.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Menu/FluentMenu.razor.js"},"Patterns":null},"FluentMenu.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"NavMenu":{"Children":{"FluentNavMenu.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/NavMenu/FluentNavMenu.razor.js"},"Patterns":null},"FluentNavMenu.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Overflow":{"Children":{"FluentOverflow.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Overflow/FluentOverflow.razor.js"},"Patterns":null},"FluentOverflow.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Overlay":{"Children":{"FluentOverlay.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Overlay/FluentOverlay.razor.js"},"Patterns":null},"FluentOverlay.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"PullToRefresh":{"Children":{"FluentPullToRefresh.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/PullToRefresh/FluentPullToRefresh.razor.js"},"Patterns":null},"FluentPullToRefresh.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Search":{"Children":{"FluentSearch.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Search/FluentSearch.razor.js"},"Patterns":null},"FluentSearch.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Slider":{"Children":{"FluentSlider.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Slider/FluentSlider.razor.js"},"Patterns":null},"FluentSlider.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz"},"Patterns":null},"FluentSliderLabel.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Slider/FluentSliderLabel.razor.js"},"Patterns":null},"FluentSliderLabel.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"SortableList":{"Children":{"FluentSortableList.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/SortableList/FluentSortableList.razor.js"},"Patterns":null},"FluentSortableList.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Splitter":{"Children":{"FluentMultiSplitter.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Splitter/FluentMultiSplitter.razor.js"},"Patterns":null},"FluentMultiSplitter.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Tabs":{"Children":{"FluentTab.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Tabs/FluentTab.razor.js"},"Patterns":null},"FluentTab.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"TextField":{"Children":{"FluentTextField.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/TextField/FluentTextField.razor.js"},"Patterns":null},"FluentTextField.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Toolbar":{"Children":{"FluentToolbar.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Toolbar/FluentToolbar.razor.js"},"Patterns":null},"FluentToolbar.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Tooltip":{"Children":{"FluentTooltip.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Tooltip/FluentTooltip.razor.js"},"Patterns":null},"FluentTooltip.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ljiijnwn0n-{0}-13ja33weya-13ja33weya.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/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll new file mode 100755 index 0000000..4d00b81 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll new file mode 100755 index 0000000..5432457 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll new file mode 100755 index 0000000..b548fa2 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll new file mode 100755 index 0000000..3397f68 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll new file mode 100755 index 0000000..2e1bb39 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll new file mode 100755 index 0000000..e8a732f Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/appsettings.Development.json b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/appsettings.json b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..4d56694 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/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/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/EmbeddedAttribute.cs b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBl.B01550A2.Up2Date b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBl.B01550A2.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfo.cs b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfo.cs new file mode 100644 index 0000000..6db077a --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("FluentBlazorApp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("FluentBlazorApp")] +[assembly: System.Reflection.AssemblyTitleAttribute("FluentBlazorApp")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfoInputs.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..219b6d9 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +37ec0e3c6239374429e3a27fd62ba3ee0a4b2fef9228bb7581630379b86160c5 diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.GeneratedMSBuildEditorConfig.editorconfig b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..918015a --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,67 @@ +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 = FluentBlazorApp +build_property.RootNamespace = FluentBlazorApp +build_property.ProjectDir = /home/robert/Documents/repos/azure-web/FluentBlazorApp/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/robert/Documents/repos/azure-web/FluentBlazorApp +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/App.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9BcHAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTWFpbkxheW91dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvTmF2TWVudS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Pages/Counter.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Db3VudGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Pages/Error.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9FcnJvci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Ib21lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Pages/NotFound.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9Ob3RGb3VuZC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Pages/Weather.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9QYWdlcy9XZWF0aGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Routes.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9Sb3V0ZXMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9fSW1wb3J0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50cy9MYXlvdXQvUmVjb25uZWN0TW9kYWwucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-mr4nqgcayn diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.GlobalUsings.g.cs b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.GlobalUsings.g.cs new file mode 100644 index 0000000..69a3c68 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.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/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.MvcApplicationPartsAssemblyInfo.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.assets.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.assets.cache new file mode 100644 index 0000000..536af70 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.assets.cache differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.AssemblyReference.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..e4edba5 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.AssemblyReference.cache differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.CoreCompileInputs.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0150e9f --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +241042f9894018a3ed62d63d8b401a4a725b4bbe5930a63814938e5f27c133b7 diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.FileListAbsolute.txt b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b4999d2 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.FileListAbsolute.txt @@ -0,0 +1,89 @@ +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/appsettings.Development.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/appsettings.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.runtime.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.staticwebassets.endpoints.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.deps.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.runtimeconfig.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/FluentBlazorApp.pdb +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/bin/Debug/net10.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/EmbeddedAttribute.cs +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/ValidatableTypeAttribute.cs +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.AssemblyReference.cache +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/rpswa.dswa.cache.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.GeneratedMSBuildEditorConfig.editorconfig +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfoInputs.cache +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.AssemblyInfo.cs +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.csproj.CoreCompileInputs.cache +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.MvcApplicationPartsAssemblyInfo.cache +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/rjimswa.dswa.cache.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json.cache +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.development.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/swae.build.ex.cache +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBl.B01550A2.Up2Date +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/refint/FluentBlazorApp.dll +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.pdb +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.genruntimeconfig.cache +/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/ref/FluentBlazorApp.dll diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.dll b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.dll new file mode 100644 index 0000000..f0a2f61 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.genruntimeconfig.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.genruntimeconfig.cache new file mode 100644 index 0000000..c75c8c7 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.genruntimeconfig.cache @@ -0,0 +1 @@ +4a0b3405016f8e134b9d66964a763eb506030459bbcf2019755888a7180af26b diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.pdb b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.pdb new file mode 100644 index 0000000..6f54dfa Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/FluentBlazorApp.pdb differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/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/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/apphost b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..3021ff1 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/apphost differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz new file mode 100644 index 0000000..83b14e3 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz new file mode 100644 index 0000000..073751b Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz new file mode 100644 index 0000000..e180fb7 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz new file mode 100644 index 0000000..bb17f04 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz new file mode 100644 index 0000000..b42415b Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz new file mode 100644 index 0000000..6863ab4 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz new file mode 100644 index 0000000..d41a3f4 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz new file mode 100644 index 0000000..f09948d Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz new file mode 100644 index 0000000..635ccb6 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz new file mode 100644 index 0000000..c942e5c Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz new file mode 100644 index 0000000..c744bc9 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz new file mode 100644 index 0000000..ee69074 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz new file mode 100644 index 0000000..608405e Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz new file mode 100644 index 0000000..5aa5869 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz new file mode 100644 index 0000000..5aa3eb2 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz new file mode 100644 index 0000000..724a6ae Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz new file mode 100644 index 0000000..fba1c10 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz new file mode 100644 index 0000000..3c7e8af Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz new file mode 100644 index 0000000..c8a4ce1 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz new file mode 100644 index 0000000..4f14aad Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz new file mode 100644 index 0000000..11d3b96 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz new file mode 100644 index 0000000..9f56c6e Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz new file mode 100644 index 0000000..f6cff08 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz new file mode 100644 index 0000000..39530b2 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz new file mode 100644 index 0000000..7864a8c Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz new file mode 100644 index 0000000..51bff55 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz new file mode 100644 index 0000000..c5cc621 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz new file mode 100644 index 0000000..c09d392 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz new file mode 100644 index 0000000..7272c3d Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz new file mode 100644 index 0000000..0b76857 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz new file mode 100644 index 0000000..ee28520 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz new file mode 100644 index 0000000..1d42824 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz new file mode 100644 index 0000000..6d2b457 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz new file mode 100644 index 0000000..b55aae9 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz new file mode 100644 index 0000000..a9bbfb0 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz new file mode 100644 index 0000000..418dfb8 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz new file mode 100644 index 0000000..1ba9fbd Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz new file mode 100644 index 0000000..0cd9253 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz new file mode 100644 index 0000000..082866d Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz new file mode 100644 index 0000000..edd6998 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz new file mode 100644 index 0000000..6b55513 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz new file mode 100644 index 0000000..e06e375 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz new file mode 100644 index 0000000..2261de8 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz new file mode 100644 index 0000000..1449bad Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz new file mode 100644 index 0000000..4cfc635 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz new file mode 100644 index 0000000..a6b6160 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz new file mode 100644 index 0000000..605bd84 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json new file mode 100644 index 0000000..befb761 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json @@ -0,0 +1,3 @@ +[ + "_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js" +] \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rbcswa.dswa.cache.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..28dfdf9 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["jlPjZ7FNXWfgN\u002B5ycrb4t/KdyRL2msvbK/8RWlrzjts=","w8QY\u002BE2N8zEyaQ1ivWPypfy8Bcbp3wJqJnQjh98sD4w=","bdvFT\u002Bgjgqf42XhMrYcZ5DG5ZwRJrpLWzJsArnMdiGY=","MVacCZkfNC5NeYHP5mqswrvICanWltmIU8KsKo5zlfo=","OXwzMxBvfHwZUIhIEk1BQy9uX8vEeRZly7DJHmR9bxY=","BkrHukJ2xbBMYNU8k6IdtzaGSOaOVLVCXyHcP\u002BuuUZw=","/R7CKH9DXCcdcRfsgWCIEhJQGWBuep0AH9iZckDhX0o=","DOTjxEzEtHv5sfBgfH0JlTEE5RBXkK/RwAoa3c1k7Dc=","dukxettL9cch0j0o6nKSmUXbXnvd0ci97u2vgiFQehs=","Kb6hUC6DdASRGxTQ55LLdMO8cccpK30ncFjAFOT\u002B8rU=","UDh3MZ2SAfVAUn4pf30eplBLamjFnHXQWdswj\u002BnwAuo=","Y7TQwLra2GgqxBwZBdrhMCK5DAOdSyWbkcop9d8bHqw=","PtcDatS9kT5p0138Y/g9xbmYxGGbthZbFcJ0gRk937c=","3m4FsNZEGywDrisMwYHuQoDWB0hZuVR55YrzUt9NH5Y=","o\u002BGLZu8gqTmDps8fB2lr\u002BnWycRlsZ\u002BmYaFvaVaWYPhk=","hzaZ6j1d3IbBWtUnzD87eBSca9QKbgZojR1JXV28bOE=","pgqgswVuC6jj\u002BsTlMuCCyn72D1vUMlpE\u002BYc5HGNFHho=","RyqGKLmeTrf/wyz2WjLXLSMxjHVtjR6LQ0ttGTiXE8o=","6W3R5RyukjZoh3T23e4FK0CqGM2DF9U9P/KfR3JiWdA=","K91WSLgdCzFpVHFvMkXcN9xmbSjctGQCY\u002BR5Im6ud8k=","mj3S8jmXCqissUskr2RlXXSS7a6GU1B9YdQEUov4b94=","2Qy8AMP6voRcPEleZjTlqX2cUqT0CaFLCEScGUVXK8s=","xuCOMzPzBlQjLj3K9BpSg/vRsECqvuw4\u002B2TK0HPghOI=","1PM7dw6QdtXCwIJvupHeAGrV/BqfzRMWI/Qvs3eO14U=","w5WOJ\u002B/R4qthz8I\u002BR3yzPFhM6D6/RdGaZ1RyKsd2djQ=","90uhMWrebIgM88enFlKDmg4Zvh6FuedYS2ejCUarS4s=","NCMFJ/bZDp4SEfLy5Y1JJPfnYyuIVkuCF45pToedCpE=","K7i1Up2d1wOT2a9C8PWdtwWKnD/FQIlb25SzE4/2Js4=","7YkJV2LXYGNTx0wByfJXFcBP/XIp51r81RVtgHptDyk=","26g2MmAhdgiYGLH4cFh3pHfahJqkBBBKaymPArnIHVc=","3KEEipyCuhIYKwi1TlkLmgeW8zn83A67ibfvcOERJYU=","UsgpZTVlk7R4EkX7B4BcKrruGbU6ctkDLiGs853iDrk=","zSb0BNTp8IzDiCK5aYxgeo87plR8/vuYhPq2XYsHjnM=","mThPMIhIzcDj5Hxol/72jFV4FwhElJynujGu0NpbsAA=","avqxLMgJhKG0pWgoh71qCwTDwRto\u002B3k7/xatrfOmRW4=","UqxQElWZEfV0ndTn6aKhe2PUCqOGtoThoweXkkdPsk0=","6c9K5F1IO7ata9mJ8sbydfN24fQiEmhbS21H6MtpodI=","00Z\u002BqyWprAST1PCiFO\u002BbXnC\u002BPd4qeuqX2Zo8Zqr7pI0=","BURhdr6FDD9ZAWgGb5DAwdKGLT\u002BwpnLk/ucQUj4PM/I=","k\u002Bo77MgvhUHaqdF0l\u002BDXtwKcaZH72qIMJjTpbGN5pFw=","y/zhwWq2ykYlMotqXmXntZa6b\u002BOtBVeaShyxKh2qFmE=","AKt8CDEqy7vIqWkMtO209S0Dv3OEkJfLuiFuTbjJYTk=","sw0X7dvuj5bJ1G/F2101j5TYyg6nnYMwKxW4mn0KjPc=","D2Z07S4BGORHzmsO7AFps0dtBQWADtz4dwIbWciM/Sc=","/7bpnyktJYqTNDhicOiywFppSHtEV/4DZt5wbe2PGxI=","0mQoCpKsE1jlWXveKxiPfC3uVzBHjXjvl/cAkF3Olc8=","7N42/On6w90E4svBCIsH/PK37pIH8jorXvaROg0ZLZc="],"CachedAssets":{"jlPjZ7FNXWfgN\u002B5ycrb4t/KdyRL2msvbK/8RWlrzjts=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Accordion/FluentAccordionItem.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ikab60nlen","Integrity":"vn\u002BOw0MuNgiBx0eZsXfI1\u002BE/Dn8YXFmjj7YJdxSIf8o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","FileLength":187,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"w8QY\u002BE2N8zEyaQ1ivWPypfy8Bcbp3wJqJnQjh98sD4w=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Anchor/FluentAnchor.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jsx8gf2w7e","Integrity":"7dZ6idtddBDi\u002Bf83OF4W41LFk0osJOrs/3l8b0p0YXQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","FileLength":267,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"bdvFT\u002Bgjgqf42XhMrYcZ5DG5ZwRJrpLWzJsArnMdiGY=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kr1ikcd4qg","Integrity":"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz\u002Bwc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","FileLength":1343,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"MVacCZkfNC5NeYHP5mqswrvICanWltmIU8KsKo5zlfo=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Button/FluentButton.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zmg17to15a","Integrity":"hTqCRqi\u002BSP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","FileLength":315,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"OXwzMxBvfHwZUIhIEk1BQy9uX8vEeRZly7DJHmR9bxY=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Checkbox/FluentCheckbox.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zx7x5xd4h1","Integrity":"d7\u002BoO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","FileLength":224,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"BkrHukJ2xbBMYNU8k6IdtzaGSOaOVLVCXyHcP\u002BuuUZw=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DataGrid/FluentDataGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pzr9rzenfq","Integrity":"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","FileLength":3904,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"/R7CKH9DXCcdcRfsgWCIEhJQGWBuep0AH9iZckDhX0o=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DateTime/FluentTimePicker.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lbgts9ksjs","Integrity":"4ZehRQD/MtECwLmrFm6zS9i\u002BtqyyRwWcxqlu5cYtl4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","FileLength":181,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"DOTjxEzEtHv5sfBgfH0JlTEE5RBXkK/RwAoa3c1k7Dc=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f68qgb45yj","Integrity":"50cDcHZKlSt16w\u002BqLnlpA4Y5RfafzN7WTuX\u002BrbcL29o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","FileLength":756,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"dukxettL9cch0j0o6nKSmUXbXnvd0ci97u2vgiFQehs=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Dialog/FluentDialogProvider.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"al9djybsec","Integrity":"MiPzhzxASCjeOa64rwDVTkA\u002BcbRiztSwIPy98WB4wG8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","FileLength":123,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"Kb6hUC6DdASRGxTQ55LLdMO8cccpK30ncFjAFOT\u002B8rU=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Divider/FluentDivider.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cnqjce14m","Integrity":"YESpJ/xiCWCbVeVcbHBl2771TKz\u002Bjnx2iBKbVuF/jQk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","FileLength":233,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"UDh3MZ2SAfVAUn4pf30eplBLamjFnHXQWdswj\u002BnwAuo=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Grid/FluentGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4ach0jpvg8","Integrity":"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb\u002BeFfmNJP3ipw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","FileLength":756,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"Y7TQwLra2GgqxBwZBdrhMCK5DAOdSyWbkcop9d8bHqw=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"65hu7r836m","Integrity":"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","FileLength":141,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"PtcDatS9kT5p0138Y/g9xbmYxGGbthZbFcJ0gRk937c=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/InputFile/FluentInputFile.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4xwvr8fiy9","Integrity":"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G\u002BAo4G\u002BcE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","FileLength":833,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"3m4FsNZEGywDrisMwYHuQoDWB0hZuVR55YrzUt9NH5Y=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/KeyCode/FluentKeyCode.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p6yi58xbvw","Integrity":"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","FileLength":901,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"o\u002BGLZu8gqTmDps8fB2lr\u002BnWycRlsZ\u002BmYaFvaVaWYPhk=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Label/FluentInputLabel.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9zq9r4chkh","Integrity":"K4SLLL0JE\u002Bj6k\u002B0Ft\u002BFojkCkK/y5ugIraUQFtihkvP8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","FileLength":253,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"hzaZ6j1d3IbBWtUnzD87eBSca9QKbgZojR1JXV28bOE=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentAutocomplete.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nov84zec1z","Integrity":"ZyIczH2rJBoHNuG\u002BdGfd36rhQWzYJXQjLeCiL32ziRU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","FileLength":848,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"pgqgswVuC6jj\u002BsTlMuCCyn72D1vUMlpE\u002BYc5HGNFHho=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentCombobox.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8b22v09wtu","Integrity":"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg\u002BBs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","FileLength":541,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"RyqGKLmeTrf/wyz2WjLXLSMxjHVtjR6LQ0ttGTiXE8o=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/ListComponentBase.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w8xucdol9w","Integrity":"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","FileLength":137,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"6W3R5RyukjZoh3T23e4FK0CqGM2DF9U9P/KfR3JiWdA=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Menu/FluentMenu.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"937e8gezxq","Integrity":"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","FileLength":1605,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"K91WSLgdCzFpVHFvMkXcN9xmbSjctGQCY\u002BR5Im6ud8k=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/NavMenu/FluentNavMenu.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fn1foakdtw","Integrity":"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","FileLength":1016,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"mj3S8jmXCqissUskr2RlXXSS7a6GU1B9YdQEUov4b94=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overflow/FluentOverflow.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5gsgrc1yir","Integrity":"\u002B9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","FileLength":1747,"LastWriteTime":"2026-01-28T03:27:13.7199243+00:00"},"2Qy8AMP6voRcPEleZjTlqX2cUqT0CaFLCEScGUVXK8s=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overlay/FluentOverlay.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cqtv6ix9sl","Integrity":"vLleK4iPY\u002BqmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","FileLength":652,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"xuCOMzPzBlQjLj3K9BpSg/vRsECqvuw4\u002B2TK0HPghOI=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4hvxs34n19","Integrity":"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa\u002BXoE05wr5k8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","FileLength":1836,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"1PM7dw6QdtXCwIJvupHeAGrV/BqfzRMWI/Qvs3eO14U=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Search/FluentSearch.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u41ydf1nj3","Integrity":"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","FileLength":334,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"w5WOJ\u002B/R4qthz8I\u002BR3yzPFhM6D6/RdGaZ1RyKsd2djQ=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Slider/FluentSlider.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sgstiwhe7u","Integrity":"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","FileLength":285,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"90uhMWrebIgM88enFlKDmg4Zvh6FuedYS2ejCUarS4s=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Slider/FluentSliderLabel.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gg7d35idaf","Integrity":"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","FileLength":223,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"NCMFJ/bZDp4SEfLy5Y1JJPfnYyuIVkuCF45pToedCpE=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/SortableList/FluentSortableList.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p69pu6v6bp","Integrity":"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","FileLength":472,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"K7i1Up2d1wOT2a9C8PWdtwWKnD/FQIlb25SzE4/2Js4=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Splitter/FluentMultiSplitter.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6l9a826e2b","Integrity":"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco\u002BGCi6OU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","FileLength":1340,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"7YkJV2LXYGNTx0wByfJXFcBP/XIp51r81RVtgHptDyk=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tabs/FluentTab.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e4ep3lqwr4","Integrity":"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","FileLength":292,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"26g2MmAhdgiYGLH4cFh3pHfahJqkBBBKaymPArnIHVc=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/TextField/FluentTextField.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1sxcbczti2","Integrity":"AUGZo9KUwttpgpuP\u002BJhlJOOtDxpzjoUl31FQQ6oUE/E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","FileLength":464,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"3KEEipyCuhIYKwi1TlkLmgeW8zn83A67ibfvcOERJYU=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Toolbar/FluentToolbar.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bpo2k1hkl9","Integrity":"jzGj8Ygtn0cwomr\u002Bm0m1Vgk2Kb33btkFLaI11QXKbFg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","FileLength":511,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"UsgpZTVlk7R4EkX7B4BcKrruGbU6ctkDLiGs853iDrk=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tooltip/FluentTooltip.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"strxc3z5tx","Integrity":"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs\u002BxCd5Rp6e8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","FileLength":279,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"zSb0BNTp8IzDiCK5aYxgeo87plR8/vuYhPq2XYsHjnM=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/reboot.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a9exnhwmtg","Integrity":"kl5NCbAku6eMWV3\u002BMkqIeKoJqDMtwBPzo2EbfxSWpF4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","FileLength":2181,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"mThPMIhIzcDj5Hxol/72jFV4FwhElJynujGu0NpbsAA=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"js/initializersLoader.webview.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a3r13h0hkt","Integrity":"ZkaNBJvBrRIe\u002BFyALN6cwfUUEv\u002BYiy3Nxj4gj\u002BUK0Vg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","FileLength":514,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"avqxLMgJhKG0pWgoh71qCwTDwRto\u002B3k7/xatrfOmRW4=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"js/loading-theme.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"72p5kgdzd6","Integrity":"4Y2FoDtSYdOwiX1e0\u002BUJhqaA/dfazhGgtKLaG26P0fU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","FileLength":1216,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"UqxQElWZEfV0ndTn6aKhe2PUCqOGtoThoweXkkdPsk0=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"isuv4a8xwv","Integrity":"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","FileLength":91380,"LastWriteTime":"2026-01-28T03:27:13.7249245+00:00"},"6c9K5F1IO7ata9mJ8sbydfN24fQiEmhbS21H6MtpodI=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gqx0n5lw6s","Integrity":"OFrSFChtzJeqZyppjt0\u002BVhjaH2/twujVVMvQ\u002B/e3VQg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","FileLength":575,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"00Z\u002BqyWprAST1PCiFO\u002BbXnC\u002BPd4qeuqX2Zo8Zqr7pI0=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wcmnse5hz8","Integrity":"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","FileLength":279078,"LastWriteTime":"2026-01-28T03:27:13.735925+00:00"},"BURhdr6FDD9ZAWgGb5DAwdKGLT\u002BwpnLk/ucQUj4PM/I=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"app#[.{fingerprint=g5ndc3bl4h}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lx67h5150k","Integrity":"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY\u002BSnKOvRyXs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","FileLength":2549,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"k\u002Bo77MgvhUHaqdF0l\u002BDXtwKcaZH72qIMJjTpbGN5pFw=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"favicon#[.{fingerprint=a8m5cweeeb}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lbqlbr3fs2","Integrity":"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/favicon.ico","FileLength":5481,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"y/zhwWq2ykYlMotqXmXntZa6b\u002BOtBVeaShyxKh2qFmE=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint=13ja33weya}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kmh0ev2gl5","Integrity":"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","FileLength":720,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"AKt8CDEqy7vIqWkMtO209S0Dv3OEkJfLuiFuTbjJYTk=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint=o32v8r49vv}]?.modules.json.gz","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v98nru1aqc","Integrity":"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","FileLength":93,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"},"sw0X7dvuj5bJ1G/F2101j5TYyg6nnYMwKxW4mn0KjPc=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=j8lzlu28q6}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lprmb52bs5","Integrity":"N8tlkDKIUX\u002BOHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.web.js","FileLength":55629,"LastWriteTime":"2026-01-28T03:27:13.7229244+00:00"},"D2Z07S4BGORHzmsO7AFps0dtBQWADtz4dwIbWciM/Sc=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=u1n4jc5v46}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"n8epbsj4uv","Integrity":"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.server.js","FileLength":44654,"LastWriteTime":"2026-01-28T03:27:13.7249245+00:00"},"/7bpnyktJYqTNDhicOiywFppSHtEV/4DZt5wbe2PGxI=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cwalbstrz1","Integrity":"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","FileLength":14178,"LastWriteTime":"2026-01-28T03:27:13.7219244+00:00"},"0mQoCpKsE1jlWXveKxiPfC3uVzBHjXjvl/cAkF3Olc8=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint=dr97trlaug}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d02kquc8i3","Integrity":"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","FileLength":994,"LastWriteTime":"2026-01-28T03:27:13.7219244+00:00"},"7N42/On6w90E4svBCIsH/PK37pIH8jorXvaROg0ZLZc=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint=929e30nm1z}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uvyn6sznxm","Integrity":"Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","FileLength":935,"LastWriteTime":"2026-01-28T03:27:13.7209243+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/ref/FluentBlazorApp.dll b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/ref/FluentBlazorApp.dll new file mode 100644 index 0000000..bc98361 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/ref/FluentBlazorApp.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/refint/FluentBlazorApp.dll b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/refint/FluentBlazorApp.dll new file mode 100644 index 0000000..bc98361 Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/refint/FluentBlazorApp.dll differ diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjimswa.dswa.cache.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..5cf267e --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"uhsOBYnSXKppCvhg62be+HeTzbbchLr08M4v8pbO2ic=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["6NBklSx7mA\u002BGBEDlcoJAePC18FaKqXrQHDzPsi46dTw=","u3lRZ8TekLQ7/odKlKZ8w1qqJgt\u002BrRsnjGgmkx2PL\u002B0="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..4056237 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"PEjkQtJ6W4XPVvEnuWx515pQiYfIg0sBeZ8AD14Lwv4=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["oRAhMPTXjMAe\u002BpDKfZcMcb0wk5pkToOz5gU5r6iGCb8=","013ON7t55mTgMHWbD\u002BHlw/FmNwac17rqRmleTb/Vj/M=","b/UehVUUxDrMqf6nS1j6f2pKbif0cUrUXSaJx0nOdDg=","GBraetC9avZ\u002BipyF\u002B6/55V3UpwuY1T6cnBaKhwH01Is=","0CU4STOC8FGJfm671zlRD9oZbOPDyYliCq0L3ZzSVls=","37GijO/v1\u002BnvF/1lGrZwP0D20x2\u002BJTODtO6o9ed7t3o=","B\u002BLmTyjp41MQGN4juQxImewfyZRJWxByFUcs/0b3Its=","6gx\u002B/0UAGAJj14PHrnjHQ\u002Bss/P6FjPK9XfsDii0pZ8g=","ZAVut75UOfu833htTruJj8UzNbP7aqGg8MOd3uOfKB8=","gd4MU5\u002BsqMg701u1F9JkE\u002B542Tif8/Zv0JMLOAuHwg0=","DD7QGu8KA48Uf0BUpdXBoLNgWwAgHNEB7/WyFdgbP58=","hEBN0ZOSkiIZkrD3wlNBzLL7SN7rDfjWMrumVUq6K50=","2xZLil8SmUmwdXSO7mApd0LtStOZKIEh4Gjlkqrasf0=","BZk8pTnISWJZ370XVnXiSKdfGNHQz5uIkRfaarcoVZw=","m9H6743fvs1U4q9cEeErk0K5uXUtsnyzIpC63p/uwcA=","60fAF\u002B4AJp0KnFz8Y5ZK9MEh\u002BXUKMQPpG\u002BBdlnWUFl0=","y5nPkkEmh/tX8M7l/F4rx473ccV6Vc6dW3SBrva3ZeE=","MFtsOzgm0ZvlnMzzBHCj0G1IYi7D6ne80sg5V8VJJdQ=","AumSF5X0r92anaFCfban6\u002BmS\u002BWHf3sLOgTD2lqq6x/Q="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..8ae34e0 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"QbFaYwj9Zs/i+Tdv5ZIot/4jrjhmaWkqhog2SIbpUXo=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["oRAhMPTXjMAe\u002BpDKfZcMcb0wk5pkToOz5gU5r6iGCb8=","013ON7t55mTgMHWbD\u002BHlw/FmNwac17rqRmleTb/Vj/M=","b/UehVUUxDrMqf6nS1j6f2pKbif0cUrUXSaJx0nOdDg=","GBraetC9avZ\u002BipyF\u002B6/55V3UpwuY1T6cnBaKhwH01Is=","0CU4STOC8FGJfm671zlRD9oZbOPDyYliCq0L3ZzSVls=","37GijO/v1\u002BnvF/1lGrZwP0D20x2\u002BJTODtO6o9ed7t3o=","B\u002BLmTyjp41MQGN4juQxImewfyZRJWxByFUcs/0b3Its=","6gx\u002B/0UAGAJj14PHrnjHQ\u002Bss/P6FjPK9XfsDii0pZ8g=","ZAVut75UOfu833htTruJj8UzNbP7aqGg8MOd3uOfKB8=","gd4MU5\u002BsqMg701u1F9JkE\u002B542Tif8/Zv0JMLOAuHwg0=","DD7QGu8KA48Uf0BUpdXBoLNgWwAgHNEB7/WyFdgbP58=","hEBN0ZOSkiIZkrD3wlNBzLL7SN7rDfjWMrumVUq6K50=","2xZLil8SmUmwdXSO7mApd0LtStOZKIEh4Gjlkqrasf0=","BZk8pTnISWJZ370XVnXiSKdfGNHQz5uIkRfaarcoVZw=","m9H6743fvs1U4q9cEeErk0K5uXUtsnyzIpC63p/uwcA=","60fAF\u002B4AJp0KnFz8Y5ZK9MEh\u002BXUKMQPpG\u002BBdlnWUFl0=","y5nPkkEmh/tX8M7l/F4rx473ccV6Vc6dW3SBrva3ZeE=","MFtsOzgm0ZvlnMzzBHCj0G1IYi7D6ne80sg5V8VJJdQ=","AumSF5X0r92anaFCfban6\u002BmS\u002BWHf3sLOgTD2lqq6x/Q="],"CachedAssets":{"y5nPkkEmh/tX8M7l/F4rx473ccV6Vc6dW3SBrva3ZeE=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components/Layout/ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-01-28T03:23:14.4501366+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rpswa.dswa.cache.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..bf93716 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"wqEr3Al8rCQjNcHPSrY0Zjjh8jPT0qTLu1CKWHSGpp8=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["oRAhMPTXjMAe\u002BpDKfZcMcb0wk5pkToOz5gU5r6iGCb8=","013ON7t55mTgMHWbD\u002BHlw/FmNwac17rqRmleTb/Vj/M=","b/UehVUUxDrMqf6nS1j6f2pKbif0cUrUXSaJx0nOdDg=","GBraetC9avZ\u002BipyF\u002B6/55V3UpwuY1T6cnBaKhwH01Is=","0CU4STOC8FGJfm671zlRD9oZbOPDyYliCq0L3ZzSVls=","37GijO/v1\u002BnvF/1lGrZwP0D20x2\u002BJTODtO6o9ed7t3o=","B\u002BLmTyjp41MQGN4juQxImewfyZRJWxByFUcs/0b3Its=","6gx\u002B/0UAGAJj14PHrnjHQ\u002Bss/P6FjPK9XfsDii0pZ8g=","ZAVut75UOfu833htTruJj8UzNbP7aqGg8MOd3uOfKB8=","gd4MU5\u002BsqMg701u1F9JkE\u002B542Tif8/Zv0JMLOAuHwg0=","DD7QGu8KA48Uf0BUpdXBoLNgWwAgHNEB7/WyFdgbP58=","hEBN0ZOSkiIZkrD3wlNBzLL7SN7rDfjWMrumVUq6K50=","2xZLil8SmUmwdXSO7mApd0LtStOZKIEh4Gjlkqrasf0=","BZk8pTnISWJZ370XVnXiSKdfGNHQz5uIkRfaarcoVZw=","m9H6743fvs1U4q9cEeErk0K5uXUtsnyzIpC63p/uwcA="],"CachedAssets":{"oRAhMPTXjMAe\u002BpDKfZcMcb0wk5pkToOz5gU5r6iGCb8=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"g5ndc3bl4h","Integrity":"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/app.css","FileLength":6157,"LastWriteTime":"2026-01-28T03:23:14.5251401+00:00"},"013ON7t55mTgMHWbD\u002BHlw/FmNwac17rqRmleTb/Vj/M=":{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/favicon.ico","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"a8m5cweeeb","Integrity":"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15086,"LastWriteTime":"2026-01-28T03:23:14.5361407+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css new file mode 100644 index 0000000..9e5ffed --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css @@ -0,0 +1,157 @@ +.components-reconnect-first-attempt-visible[b-mr4nqgcayn], +.components-reconnect-repeated-attempt-visible[b-mr4nqgcayn], +.components-reconnect-failed-visible[b-mr4nqgcayn], +.components-pause-visible[b-mr4nqgcayn], +.components-resume-failed-visible[b-mr4nqgcayn], +.components-rejoining-animation[b-mr4nqgcayn] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-failed[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mr4nqgcayn] { + display: block; +} + + +#components-reconnect-modal[b-mr4nqgcayn] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-mr4nqgcayn 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-mr4nqgcayn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-mr4nqgcayn]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-mr4nqgcayn { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-mr4nqgcayn { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-mr4nqgcayn] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-mr4nqgcayn] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-mr4nqgcayn] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-mr4nqgcayn] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-mr4nqgcayn] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-mr4nqgcayn] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-mr4nqgcayn] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-mr4nqgcayn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-mr4nqgcayn] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-mr4nqgcayn { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css new file mode 100644 index 0000000..c99ee87 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css @@ -0,0 +1,160 @@ +@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css'; + +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-mr4nqgcayn], +.components-reconnect-repeated-attempt-visible[b-mr4nqgcayn], +.components-reconnect-failed-visible[b-mr4nqgcayn], +.components-pause-visible[b-mr4nqgcayn], +.components-resume-failed-visible[b-mr4nqgcayn], +.components-rejoining-animation[b-mr4nqgcayn] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-failed[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mr4nqgcayn] { + display: block; +} + + +#components-reconnect-modal[b-mr4nqgcayn] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-mr4nqgcayn 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-mr4nqgcayn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-mr4nqgcayn]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-mr4nqgcayn { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-mr4nqgcayn { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-mr4nqgcayn] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-mr4nqgcayn] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-mr4nqgcayn] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-mr4nqgcayn] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-mr4nqgcayn] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-mr4nqgcayn] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-mr4nqgcayn] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-mr4nqgcayn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-mr4nqgcayn] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-mr4nqgcayn { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css new file mode 100644 index 0000000..e27390d --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css @@ -0,0 +1,158 @@ +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-mr4nqgcayn], +.components-reconnect-repeated-attempt-visible[b-mr4nqgcayn], +.components-reconnect-failed-visible[b-mr4nqgcayn], +.components-pause-visible[b-mr4nqgcayn], +.components-resume-failed-visible[b-mr4nqgcayn], +.components-rejoining-animation[b-mr4nqgcayn] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-failed[b-mr4nqgcayn], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mr4nqgcayn] { + display: block; +} + + +#components-reconnect-modal[b-mr4nqgcayn] { + background-color: white; + width: 20rem; + margin: 20vh auto; + padding: 2rem; + border: 0; + border-radius: 0.5rem; + box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3); + opacity: 0; + transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete; + animation: components-reconnect-modal-fadeOutOpacity-b-mr4nqgcayn 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-mr4nqgcayn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-mr4nqgcayn]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-mr4nqgcayn { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-mr4nqgcayn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-mr4nqgcayn { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-mr4nqgcayn] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-mr4nqgcayn] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-mr4nqgcayn] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-mr4nqgcayn] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-mr4nqgcayn] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-mr4nqgcayn] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-mr4nqgcayn] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-mr4nqgcayn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-mr4nqgcayn] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-mr4nqgcayn { + 0% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 4.9% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 0; + } + + 5% { + top: 40px; + left: 40px; + width: 0; + height: 0; + opacity: 1; + } + + 100% { + top: 0px; + left: 0px; + width: 80px; + height: 80px; + opacity: 0; + } +} diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..999ac7d --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"Components/Layout/ReconnectModal.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y="}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001005025126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"label","Value":"FluentBlazorApp.styles.css"},{"Name":"original-resource","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css","AssetFile":"FluentBlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4369"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"label","Value":"FluentBlazorApp.styles.css"}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css.gz","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og="},{"Name":"label","Value":"FluentBlazorApp.styles.css.gz"}]},{"Route":"FluentBlazorApp.modules.json","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010638297872"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"original-resource","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""}]},{"Route":"FluentBlazorApp.modules.json","AssetFile":"FluentBlazorApp.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="}]},{"Route":"FluentBlazorApp.modules.json.gz","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo="}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010638297872"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"label","Value":"FluentBlazorApp.modules.json"},{"Name":"original-resource","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json","AssetFile":"FluentBlazorApp.modules.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"label","Value":"FluentBlazorApp.modules.json"}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json.gz","AssetFile":"FluentBlazorApp.modules.json.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo="},{"Name":"label","Value":"FluentBlazorApp.modules.json.gz"}]},{"Route":"FluentBlazorApp.styles.css","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001005025126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"original-resource","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""}]},{"Route":"FluentBlazorApp.styles.css","AssetFile":"FluentBlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4369"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="}]},{"Route":"FluentBlazorApp.styles.css.gz","AssetFile":"FluentBlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.l5v3n1o5hs.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"259"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l5v3n1o5hs"},{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"259"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005319148936"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"original-resource","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.dpoev2zj9b.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dpoev2zj9b"},{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003731343284"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"267"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"original-resource","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"267"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.73nt9uxv2t.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"73nt9uxv2t"},{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000744047619"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1343"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"original-resource","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1343"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.p6kf5zqzit.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"522"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p6kf5zqzit"},{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"522"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003164556962"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"original-resource","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"368"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004444444444"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"original-resource","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.zjzit57lox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"368"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjzit57lox"},{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.dvdt7c1hdi.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17719"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dvdt7c1hdi"},{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17719"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000256081946"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3904"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"original-resource","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3904"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.h5k564t0jv.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"247"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h5k564t0jv"},{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"247"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005494505495"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"181"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"original-resource","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"181"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.7i47nr1axg.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7i47nr1axg"},{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001321003963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"original-resource","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.oy1cuw4jhq.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oy1cuw4jhq"},{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008064516129"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"123"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"original-resource","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"123"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.iy34mpf72d.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iy34mpf72d"},{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004273504274"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"233"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"original-resource","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"233"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.hi1gwvth64.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3005"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hi1gwvth64"},{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3005"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001321003963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"original-resource","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.5pcucyxosc.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"348"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5pcucyxosc"},{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"348"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.007042253521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"original-resource","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2813"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001199040767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"833"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"original-resource","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"833"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.vjluklws0l.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2813"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vjluklws0l"},{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.9juufzcgdk.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9juufzcgdk"},{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001108647450"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"901"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"original-resource","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"901"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"473"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003937007874"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"253"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"original-resource","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"253"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.xp2f0e0rh3.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"473"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xp2f0e0rh3"},{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.ikjxvulr4w.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2344"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ikjxvulr4w"},{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2344"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001177856302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"848"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"original-resource","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"848"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.afevzs963z.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1483"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"afevzs963z"},{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1483"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001845018450"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"541"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"original-resource","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"541"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.mmp1yy7un5.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmp1yy7un5"},{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.007246376812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"original-resource","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.ntzi26y3om.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6126"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ntzi26y3om"},{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6126"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000622665006"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1605"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"original-resource","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1605"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.9fmja7pljs.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5345"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9fmja7pljs"},{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5345"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000983284169"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1016"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"original-resource","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1016"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6575"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000572082380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1747"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"original-resource","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1747"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.rgycuwl3sw.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6575"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rgycuwl3sw"},{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.kjm33rwg1a.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1977"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kjm33rwg1a"},{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1977"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001531393568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"652"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"original-resource","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"652"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.awzanx0pu8.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6841"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"awzanx0pu8"},{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6841"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000544365814"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"original-resource","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.m0sdc2vg34.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"917"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m0sdc2vg34"},{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"917"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002985074627"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"334"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"original-resource","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"334"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.0b0bj86z40.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"445"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0b0bj86z40"},{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"445"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003496503497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"285"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"original-resource","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"285"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.e5lgg05xwp.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5lgg05xwp"},{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004464285714"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"223"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"original-resource","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"223"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.ki10xp5gks.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1325"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ki10xp5gks"},{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1325"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002114164905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"472"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"original-resource","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"472"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6140"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000745712155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"original-resource","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.s9hcthfn4x.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6140"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9hcthfn4x"},{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.idf8r2y2gj.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"526"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"idf8r2y2gj"},{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"526"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003412969283"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"original-resource","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.btwuipzwbp.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"btwuipzwbp"},{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002150537634"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"464"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"original-resource","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"464"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001953125000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"511"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"original-resource","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"511"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.v95crb0bvb.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v95crb0bvb"},{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.b0dyrub9as.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"730"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0dyrub9as"},{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"730"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003571428571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"original-resource","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"103506"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:18:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070526835"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14178"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="},{"Name":"original-resource","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"103506"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:18:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ewdlgswx1m"},{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14178"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"395058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010943194"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91380"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE="},{"Name":"original-resource","Value":"\"kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1022"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001736111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"575"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4="},{"Name":"original-resource","Value":"\"gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"575"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91380"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1318140"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003583215"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279078"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8="},{"Name":"original-resource","Value":"\"gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279078"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.1dlotxxwer.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1dlotxxwer"},{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458295142"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2181"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="},{"Name":"original-resource","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2181"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.f8c5bd5212.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f8c5bd5212"},{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001941747573"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"514"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="},{"Name":"original-resource","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"514"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3439"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000821692687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1216"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="},{"Name":"original-resource","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js.gz","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1216"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.sc1npuf73a.js","AssetFile":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3439"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sc1npuf73a"},{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"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":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4="}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.u1n4jc5v46.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":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.j8lzlu28q6.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":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s="},{"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":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"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":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s="}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392156863"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"original-resource","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="}]},{"Route":"app.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs="}]},{"Route":"app.g5ndc3bl4h.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392156863"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""}]},{"Route":"app.g5ndc3bl4h.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"label","Value":"app.css"}]},{"Route":"app.g5ndc3bl4h.css.gz","AssetFile":"app.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"favicon.a8m5cweeeb.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000182415177"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""}]},{"Route":"favicon.a8m5cweeeb.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":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.a8m5cweeeb.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":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000182415177"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"original-resource","Value":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""}]},{"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":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="}]},{"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":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44="}]}]} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..ef06202 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"Ca/H9j/mzKEztOrvJTRdXP60lsCgO+2IF9z6gi9w4NI=","Source":"FluentBlazorApp","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"FluentBlazorApp/wwwroot","Source":"FluentBlazorApp","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.server.js","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"u1n4jc5v46","Integrity":"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/build/../_framework/blazor.server.js","FileLength":164726,"LastWriteTime":"2025-10-24T01:06:36+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.web.js","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j8lzlu28q6","Integrity":"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/build/../_framework/blazor.web.js","FileLength":200101,"LastWriteTime":"2025-10-24T01:06:44+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Accordion/FluentAccordionItem.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"l5v3n1o5hs","Integrity":"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","FileLength":259,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Anchor/FluentAnchor.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"dpoev2zj9b","Integrity":"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","FileLength":430,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"73nt9uxv2t","Integrity":"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","FileLength":4314,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Button/FluentButton.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"p6kf5zqzit","Integrity":"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","FileLength":522,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Checkbox/FluentCheckbox.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"zjzit57lox","Integrity":"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","FileLength":368,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DataGrid/FluentDataGrid.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"dvdt7c1hdi","Integrity":"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","FileLength":17719,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DateTime/FluentTimePicker.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"h5k564t0jv","Integrity":"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","FileLength":247,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7i47nr1axg","Integrity":"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","FileLength":2115,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Dialog/FluentDialogProvider.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"oy1cuw4jhq","Integrity":"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","FileLength":177,"LastWriteTime":"2025-11-27T15:08:57+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Divider/FluentDivider.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"iy34mpf72d","Integrity":"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","FileLength":388,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Grid/FluentGrid.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hi1gwvth64","Integrity":"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","FileLength":3005,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"5pcucyxosc","Integrity":"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","FileLength":348,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/InputFile/FluentInputFile.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vjluklws0l","Integrity":"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","FileLength":2813,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/KeyCode/FluentKeyCode.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9juufzcgdk","Integrity":"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","FileLength":3542,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Label/FluentInputLabel.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"xp2f0e0rh3","Integrity":"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","FileLength":473,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentAutocomplete.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ikjxvulr4w","Integrity":"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","FileLength":2344,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentCombobox.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"afevzs963z","Integrity":"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","FileLength":1483,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/ListComponentBase.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"mmp1yy7un5","Integrity":"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","FileLength":177,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Menu/FluentMenu.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ntzi26y3om","Integrity":"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","FileLength":6126,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/NavMenu/FluentNavMenu.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"9fmja7pljs","Integrity":"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","FileLength":5345,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overflow/FluentOverflow.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rgycuwl3sw","Integrity":"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","FileLength":6575,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overlay/FluentOverlay.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"kjm33rwg1a","Integrity":"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","FileLength":1977,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"awzanx0pu8","Integrity":"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","FileLength":6841,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Search/FluentSearch.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"m0sdc2vg34","Integrity":"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","FileLength":917,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Slider/FluentSlider.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0b0bj86z40","Integrity":"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","FileLength":445,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Slider/FluentSliderLabel.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"e5lgg05xwp","Integrity":"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","FileLength":340,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/SortableList/FluentSortableList.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ki10xp5gks","Integrity":"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","FileLength":1325,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Splitter/FluentMultiSplitter.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"s9hcthfn4x","Integrity":"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","FileLength":6140,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tabs/FluentTab.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"idf8r2y2gj","Integrity":"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","FileLength":526,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/TextField/FluentTextField.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"btwuipzwbp","Integrity":"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","FileLength":1187,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Toolbar/FluentToolbar.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"v95crb0bvb","Integrity":"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","FileLength":1364,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tooltip/FluentTooltip.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b0dyrub9as","Integrity":"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","FileLength":730,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"ewdlgswx1m","Integrity":"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","FileLength":103506,"LastWriteTime":"2025-11-27T15:18:04+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"JSModule","AssetTraitValue":"JSLibraryModule","Fingerprint":"zbg73p58hc","Integrity":"kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","FileLength":395058,"LastWriteTime":"2025-11-27T15:17:50+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"kz8gc8cxma","Integrity":"gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","FileLength":1022,"LastWriteTime":"2025-11-27T15:17:50+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"sd59ooda5f","Integrity":"gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","FileLength":1318140,"LastWriteTime":"2025-11-27T15:17:50+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/reboot.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"1dlotxxwer","Integrity":"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","FileLength":7992,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"js/initializersLoader.webview.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"f8c5bd5212","Integrity":"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","FileLength":1121,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"js/loading-theme.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"sc1npuf73a","Integrity":"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","FileLength":3439,"LastWriteTime":"2025-11-27T15:08:58+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint}]?.razor.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"13ja33weya","Integrity":"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"Components/Layout/ReconnectModal.razor.js","FileLength":2364,"LastWriteTime":"2026-01-28T03:23:14+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint=o32v8r49vv}]?.modules.json.gz","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"v98nru1aqc","Integrity":"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","FileLength":93,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Slider/FluentSlider.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sgstiwhe7u","Integrity":"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","FileLength":285,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wcmnse5hz8","Integrity":"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","FileLength":279078,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f68qgb45yj","Integrity":"50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","FileLength":756,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/NavMenu/FluentNavMenu.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fn1foakdtw","Integrity":"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","FileLength":1016,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=u1n4jc5v46}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"n8epbsj4uv","Integrity":"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.server.js","FileLength":44654,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Splitter/FluentMultiSplitter.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6l9a826e2b","Integrity":"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","FileLength":1340,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Slider/FluentSliderLabel.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gg7d35idaf","Integrity":"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","FileLength":223,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Grid/FluentGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4ach0jpvg8","Integrity":"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","FileLength":756,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"css/reboot.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a9exnhwmtg","Integrity":"kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","FileLength":2181,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentAutocomplete.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"nov84zec1z","Integrity":"ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","FileLength":848,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint=dr97trlaug}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"d02kquc8i3","Integrity":"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","FileLength":994,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Toolbar/FluentToolbar.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bpo2k1hkl9","Integrity":"jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","FileLength":511,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Divider/FluentDivider.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0cnqjce14m","Integrity":"YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","FileLength":233,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Button/FluentButton.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zmg17to15a","Integrity":"hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","FileLength":315,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Anchor/FluentAnchor.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"jsx8gf2w7e","Integrity":"7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","FileLength":267,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Checkbox/FluentCheckbox.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zx7x5xd4h1","Integrity":"d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","FileLength":224,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"app#[.{fingerprint=g5ndc3bl4h}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lx67h5150k","Integrity":"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","FileLength":2549,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/ListComponentBase.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"w8xucdol9w","Integrity":"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","FileLength":137,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/SortableList/FluentSortableList.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p69pu6v6bp","Integrity":"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","FileLength":472,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/InputFile/FluentInputFile.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4xwvr8fiy9","Integrity":"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","FileLength":833,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Accordion/FluentAccordionItem.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ikab60nlen","Integrity":"vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","FileLength":187,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"favicon#[.{fingerprint=a8m5cweeeb}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lbqlbr3fs2","Integrity":"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/favicon.ico","FileLength":5481,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Label/FluentInputLabel.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9zq9r4chkh","Integrity":"K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","FileLength":253,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tooltip/FluentTooltip.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"strxc3z5tx","Integrity":"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","FileLength":279,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=j8lzlu28q6}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lprmb52bs5","Integrity":"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.web.js","FileLength":55629,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4hvxs34n19","Integrity":"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","FileLength":1836,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DataGrid/FluentDataGrid.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pzr9rzenfq","Integrity":"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","FileLength":3904,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"isuv4a8xwv","Integrity":"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","FileLength":91380,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint=13ja33weya}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kmh0ev2gl5","Integrity":"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","FileLength":720,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"js/initializersLoader.webview.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"a3r13h0hkt","Integrity":"ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","FileLength":514,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"gqx0n5lw6s","Integrity":"OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","FileLength":575,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overflow/FluentOverflow.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5gsgrc1yir","Integrity":"+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","FileLength":1747,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"65hu7r836m","Integrity":"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","FileLength":141,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Menu/FluentMenu.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"937e8gezxq","Integrity":"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","FileLength":1605,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cwalbstrz1","Integrity":"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","FileLength":14178,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint=929e30nm1z}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uvyn6sznxm","Integrity":"Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","FileLength":935,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/DateTime/FluentTimePicker.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lbgts9ksjs","Integrity":"4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","FileLength":181,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"js/loading-theme.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"72p5kgdzd6","Integrity":"4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","FileLength":1216,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/TextField/FluentTextField.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1sxcbczti2","Integrity":"AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","FileLength":464,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Tabs/FluentTab.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e4ep3lqwr4","Integrity":"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","FileLength":292,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/List/FluentCombobox.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8b22v09wtu","Integrity":"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","FileLength":541,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kr1ikcd4qg","Integrity":"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","FileLength":1343,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Search/FluentSearch.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"u41ydf1nj3","Integrity":"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","FileLength":334,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Dialog/FluentDialogProvider.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"al9djybsec","Integrity":"MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","FileLength":123,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/KeyCode/FluentKeyCode.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p6yi58xbvw","Integrity":"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","FileLength":901,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz","SourceId":"Microsoft.FluentUI.AspNetCore.Components","SourceType":"Package","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","BasePath":"_content/Microsoft.FluentUI.AspNetCore.Components","RelativePath":"Components/Overlay/FluentOverlay.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cqtv6ix9sl","Integrity":"vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","FileLength":652,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint}]?.modules.json","AssetKind":"Build","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"JSModule","AssetTraitValue":"JSModuleManifest","Fingerprint":"o32v8r49vv","Integrity":"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","FileLength":112,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"dr97trlaug","Integrity":"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","FileLength":4369,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","SourceId":"FluentBlazorApp","SourceType":"Computed","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/","BasePath":"/","RelativePath":"FluentBlazorApp#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"929e30nm1z","Integrity":"YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","FileLength":4240,"LastWriteTime":"2026-01-28T03:27:13+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"g5ndc3bl4h","Integrity":"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/app.css","FileLength":6157,"LastWriteTime":"2026-01-28T03:23:14+00:00"},{"Identity":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/favicon.ico","SourceId":"FluentBlazorApp","SourceType":"Discovered","ContentRoot":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"a8m5cweeeb","Integrity":"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15086,"LastWriteTime":"2026-01-28T03:23:14+00:00"}],"Endpoints":[{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js"},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/Components/Layout/ReconnectModal.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001386962552"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ljiijnwn0n-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"720"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xNzTtjOqI7HRljsm0XVFju0/8nEE3pdFOQRh/JrEh8Y="}]},{"Route":"FluentBlazorApp.929e30nm1z.bundle.scp.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001068376068"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"935"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"929e30nm1z"},{"Name":"integrity","Value":"sha256-YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw="},{"Name":"label","Value":"FluentBlazorApp.bundle.scp.css"},{"Name":"original-resource","Value":"\"YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw=\""}]},{"Route":"FluentBlazorApp.929e30nm1z.bundle.scp.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4240"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"929e30nm1z"},{"Name":"integrity","Value":"sha256-YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw="},{"Name":"label","Value":"FluentBlazorApp.bundle.scp.css"}]},{"Route":"FluentBlazorApp.929e30nm1z.bundle.scp.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"935"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"929e30nm1z"},{"Name":"integrity","Value":"sha256-Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30="},{"Name":"label","Value":"FluentBlazorApp.bundle.scp.css.gz"}]},{"Route":"FluentBlazorApp.bundle.scp.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001068376068"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"935"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw="},{"Name":"original-resource","Value":"\"YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw=\""}]},{"Route":"FluentBlazorApp.bundle.scp.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/FluentBlazorApp.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4240"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YfgnKQSNzPVeCyX0lwRN0HDfdFrLhY5QLRj0/6GWZEw="}]},{"Route":"FluentBlazorApp.bundle.scp.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pzf87cbgug-{0}-929e30nm1z-929e30nm1z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"935"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wrb0ujD3DAAjXZrV6TDTn177EI3tiH0SA9pAfLPZa30="}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001005025126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"label","Value":"FluentBlazorApp.styles.css"},{"Name":"original-resource","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4369"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"label","Value":"FluentBlazorApp.styles.css"}]},{"Route":"FluentBlazorApp.dr97trlaug.styles.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dr97trlaug"},{"Name":"integrity","Value":"sha256-LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og="},{"Name":"label","Value":"FluentBlazorApp.styles.css.gz"}]},{"Route":"FluentBlazorApp.modules.json","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010638297872"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"original-resource","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""}]},{"Route":"FluentBlazorApp.modules.json","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="}]},{"Route":"FluentBlazorApp.modules.json.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo="}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.010638297872"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"label","Value":"FluentBlazorApp.modules.json"},{"Name":"original-resource","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/jsmodules.build.manifest.json","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"112"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-ZPCZ4eLQZsYMQnHHzyLO02cs96GXqoCPqH3JX6bUluY="},{"Name":"label","Value":"FluentBlazorApp.modules.json"}]},{"Route":"FluentBlazorApp.o32v8r49vv.modules.json.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"93"},{"Name":"Content-Type","Value":"application/json"},{"Name":"ETag","Value":"\"o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"o32v8r49vv"},{"Name":"integrity","Value":"sha256-o0z72BOTTQsoHmHHjo28Oeje0JVZbmeLex/ZSgLe1xo="},{"Name":"label","Value":"FluentBlazorApp.modules.json.gz"}]},{"Route":"FluentBlazorApp.styles.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001005025126"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="},{"Name":"original-resource","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""}]},{"Route":"FluentBlazorApp.styles.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/FluentBlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4369"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Link","Value":"<_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css>; rel=\"preload\"; as=\"style\""},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-13mrOcKKMJX+ljQYfrO6yzrO4ddolxfgzdeF/2ENiNM="}]},{"Route":"FluentBlazorApp.styles.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"994"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LZncBaNwxz0b56V4KKvBdSElP34cC2KHQ2K8278A0Og="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.l5v3n1o5hs.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"259"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l5v3n1o5hs"},{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Accordion/FluentAccordionItem.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"259"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005319148936"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk="},{"Name":"original-resource","Value":"\"eZu89gqg6eRv4epzgD61J1Aqm1JQXbMiz+DTTA9Vvqk=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Accordion/FluentAccordionItem.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vn+Ow0MuNgiBx0eZsXfI1+E/Dn8YXFmjj7YJdxSIf8o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.dpoev2zj9b.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dpoev2zj9b"},{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Anchor/FluentAnchor.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"430"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003731343284"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"267"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA="},{"Name":"original-resource","Value":"\"b9RSPukLvSHekr3kftcukF9Hbr4g1a5l0/cfyJ61XMA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Anchor/FluentAnchor.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"267"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7dZ6idtddBDi+f83OF4W41LFk0osJOrs/3l8b0p0YXQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.73nt9uxv2t.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"73nt9uxv2t"},{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4314"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000744047619"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1343"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA="},{"Name":"original-resource","Value":"\"3TSUe9IzjOSHGNa2Ix54cmHWEhxMfT5lWU0rFSHOyCA=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/AnchoredRegion/FluentAnchoredRegion.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1343"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cO0zlAIeNMtMQ14DW4L/zpcqpMHPRhS1TXSXSYpz+wc="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.p6kf5zqzit.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"522"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"p6kf5zqzit"},{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Button/FluentButton.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"522"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003164556962"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs="},{"Name":"original-resource","Value":"\"8QTQtCTbbHkwqt3rAy8ZPjez2lZ6PGmR5Il+7Q3g/rs=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Button/FluentButton.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hTqCRqi+SP3URZmEjgFWFsoIYYXtZ98q4uG7Rljqhdw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"368"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004444444444"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"original-resource","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"224"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-d7+oO7y45SBZBVcQlWhlWxlQ3Xd4Lz6/mbqVYtkGVnk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.zjzit57lox.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Checkbox/FluentCheckbox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"368"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zjzit57lox"},{"Name":"integrity","Value":"sha256-gVrV4WI8finQdUGG7EIZIAh2tTbFW0GF7Hl73l/1JnE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Checkbox/FluentCheckbox.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.dvdt7c1hdi.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"17719"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dvdt7c1hdi"},{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DataGrid/FluentDataGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"17719"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000256081946"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3904"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU="},{"Name":"original-resource","Value":"\"eVIO/6Jn4XBhrPxEYuoZMyoeR/3B0nIi2g+eLmfzoOU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DataGrid/FluentDataGrid.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3904"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9fywQv68tvc1bNnAmLaxU5AslHMTfahdVGg81Fet2gg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.h5k564t0jv.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"247"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h5k564t0jv"},{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DateTime/FluentTimePicker.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"247"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.005494505495"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"181"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI="},{"Name":"original-resource","Value":"\"RRtMKgoCUAcrYnPhnEvB6ZTxWToYnajdblfvl3aVTBI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DateTime/FluentTimePicker.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"181"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4ZehRQD/MtECwLmrFm6zS9i+tqyyRwWcxqlu5cYtl4w="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.7i47nr1axg.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7i47nr1axg"},{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2115"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001321003963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k="},{"Name":"original-resource","Value":"\"cZpvuEtd1kCEHlM6AxhN1/ycVBQCToFb61YoGQ7jm5k=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/DesignSystemProvider/FluentDesignTheme.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-50cDcHZKlSt16w+qLnlpA4Y5RfafzN7WTuX+rbcL29o="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.oy1cuw4jhq.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oy1cuw4jhq"},{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Dialog/FluentDialogProvider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:57 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.008064516129"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"123"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko="},{"Name":"original-resource","Value":"\"EA2+gV7KUYvlKxcD9gBrvwQCj2ABhtLast89kFNa3Ko=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Dialog/FluentDialogProvider.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"123"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MiPzhzxASCjeOa64rwDVTkA+cbRiztSwIPy98WB4wG8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.iy34mpf72d.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"388"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iy34mpf72d"},{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Divider/FluentDivider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"388"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004273504274"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"233"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc="},{"Name":"original-resource","Value":"\"CndcCP/YVXs68LoE68COc38ypIJenMbJyu+fR0/ZIPc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Divider/FluentDivider.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"233"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YESpJ/xiCWCbVeVcbHBl2771TKz+jnx2iBKbVuF/jQk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.hi1gwvth64.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3005"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hi1gwvth64"},{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Grid/FluentGrid.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3005"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001321003963"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY="},{"Name":"original-resource","Value":"\"V4iZz/kay7SoC/eRuDViVZkhxiL1oNW1gzMAFC6k/wY=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Grid/FluentGrid.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"756"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lCuXrYFX193tWrVk4kcdLMFVDI/zWtb+eFfmNJP3ipw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.5pcucyxosc.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"348"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"5pcucyxosc"},{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"348"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.007042253521"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU="},{"Name":"original-resource","Value":"\"yf+15AR63QV4X8XvrAMxrEP5sX3Ea0tuh+Tsinb6yXU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/HorizontalScroll/FluentHorizontalScroll.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"141"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tlp2pk8I6dLoIfVIHXfDNlVHIkHqab6KAGec9gpUlNw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2813"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001199040767"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"833"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"original-resource","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"833"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLznySqXx5bSyyZLxdVoymJQAJvVqf3Xr7G+Ao4G+cE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.vjluklws0l.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/InputFile/FluentInputFile.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2813"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vjluklws0l"},{"Name":"integrity","Value":"sha256-m9D6O5smUPMQWbjax0bH03XYtdI3RD5geOwhizeT+gE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/InputFile/FluentInputFile.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.9juufzcgdk.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9juufzcgdk"},{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/KeyCode/FluentKeyCode.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001108647450"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"901"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws="},{"Name":"original-resource","Value":"\"FZGwgg/Fe8ELqXyr1DYZqj8mGXrXeZmbCkwOLwf4Jws=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/KeyCode/FluentKeyCode.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"901"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kZIf0HwQN2Nofrvgeq2mybDNHVLgR5mF3tdI4qkl8hU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"473"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003937007874"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"253"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"original-resource","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"253"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K4SLLL0JE+j6k+0Ft+FojkCkK/y5ugIraUQFtihkvP8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.xp2f0e0rh3.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Label/FluentInputLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"473"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"xp2f0e0rh3"},{"Name":"integrity","Value":"sha256-hXPNDHD1hTdz/sH1cD60f/ehIklf8zQAEE73UZNGtu8="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Label/FluentInputLabel.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.ikjxvulr4w.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2344"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ikjxvulr4w"},{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentAutocomplete.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2344"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001177856302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"848"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc="},{"Name":"original-resource","Value":"\"UqhS6+yvd9UrhzFAffmgk2ludr5ck9udmNEHb5mvchc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentAutocomplete.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"848"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZyIczH2rJBoHNuG+dGfd36rhQWzYJXQjLeCiL32ziRU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.afevzs963z.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1483"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"afevzs963z"},{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/FluentCombobox.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1483"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001845018450"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"541"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc="},{"Name":"original-resource","Value":"\"OqLCO17dCq/aFFg8O0mXN/fF4czXAd6R+vgnYjtdPwc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/FluentCombobox.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/tb98bamshq-{0}-afevzs963z-afevzs963z.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"541"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zHhPQxpJUpS4i0v8OPUmxEjovnPSmBbyhHoe32Qg+Bs="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.mmp1yy7un5.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mmp1yy7un5"},{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/List/ListComponentBase.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.007246376812"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00="},{"Name":"original-resource","Value":"\"/lFyXHGb/lh02BDFUuMzwbfU+zNOdnw2s2zKSrTtW00=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/List/ListComponentBase.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"137"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0KOB9tB2JARve5BjtWJ4Cr0QWUSBd7bsJtxQN2RPO48="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.ntzi26y3om.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6126"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ntzi26y3om"},{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Menu/FluentMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6126"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000622665006"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1605"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE="},{"Name":"original-resource","Value":"\"23+bfaqn81VwvCVPcRdX88tfObgAWPZcQfJmx1ohZYE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Menu/FluentMenu.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1605"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZQOQSwacJOYXAQjcpqlDkb5V5ZhwaoYHMb4oO0jHemg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.9fmja7pljs.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5345"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"9fmja7pljs"},{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/NavMenu/FluentNavMenu.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5345"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000983284169"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1016"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw="},{"Name":"original-resource","Value":"\"u3HANg4jObqKg1Jso4ovjOp2lKuYeAN0+zlRIfKuHhw=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/NavMenu/FluentNavMenu.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1016"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-G7Z/ux6IA/Nbo9MrUG0oUGw5t68GqVCcJMjHfTce2YI="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6575"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000572082380"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1747"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"original-resource","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1747"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+9DeJZsRYGn8bj321UPBPjr8a6MFX3wjxU8qAQXcJfE="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.rgycuwl3sw.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overflow/FluentOverflow.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6575"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rgycuwl3sw"},{"Name":"integrity","Value":"sha256-hVi+eZ1AhYzWA2HILBTSjl5xstub4DMGzUxGJIQgjVo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overflow/FluentOverflow.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.kjm33rwg1a.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1977"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kjm33rwg1a"},{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Overlay/FluentOverlay.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1977"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001531393568"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"652"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI="},{"Name":"original-resource","Value":"\"IDySDi264SKaXFu1nL+hU2NeFhEMrX6Zv7ubUPR88VI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Overlay/FluentOverlay.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"652"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vLleK4iPY+qmbKmR2OehPEHH1zF9H3l8AAzo/nw/pyk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.awzanx0pu8.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6841"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"awzanx0pu8"},{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6841"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000544365814"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo="},{"Name":"original-resource","Value":"\"xlA5fSAkA6TiFUznwHP835N8kAxJ7YJ5MTizYCGeOfo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/PullToRefresh/FluentPullToRefresh.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1836"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mKWuhnPecWMGN1uqBivtcIQTKlotnNJa+XoE05wr5k8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.m0sdc2vg34.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"917"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"m0sdc2vg34"},{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Search/FluentSearch.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"917"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002985074627"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"334"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE="},{"Name":"original-resource","Value":"\"FpN8ZcuZyVhdYb+cHNB4VZ5bLM+yi3gDaTZbWsahaYE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Search/FluentSearch.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"334"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PtNqwpYLcnhYGZko2E820QuV2BsYEyfUxpgemoBziCw="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.0b0bj86z40.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"445"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0b0bj86z40"},{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSlider.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"445"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003496503497"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"285"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k="},{"Name":"original-resource","Value":"\"TAnVg0aJviMtvE8pWYaaZahF5suJcjonGCC7accq76k=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSlider.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"285"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pGiSvKEP08n3PEpXpgaXYO4M22JcATmDa36wcKpunds="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.e5lgg05xwp.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"e5lgg05xwp"},{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Slider/FluentSliderLabel.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.004464285714"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"223"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo="},{"Name":"original-resource","Value":"\"Em8bsrj69skLLR4IHVJ8lIJTR1EcY/U9nvcfn9t1rzo=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Slider/FluentSliderLabel.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"223"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ACJWQiz5o4LCmr16ldtDa1EQ47lESwWhp23ZFjcSfdQ="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.ki10xp5gks.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1325"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ki10xp5gks"},{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/SortableList/FluentSortableList.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1325"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002114164905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"472"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg="},{"Name":"original-resource","Value":"\"rBxLYd0QGHwfD9IZljh74Lf+ZC+zqoRLqwikRKcRgpg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/SortableList/FluentSortableList.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"472"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P9/1ryQyEg3RQM7icx4spW1buSbjiJOhaJFRCrYvbJ8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6140"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000745712155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"original-resource","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1340"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9oCmNrAbUfevwu2rEvst2XhNoHeuMvQlvjco+GCi6OU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.s9hcthfn4x.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6140"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s9hcthfn4x"},{"Name":"integrity","Value":"sha256-kExJSsKpmByqtTJ/TOwptCU5yawR+13aqkZxoVN+a1A="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Splitter/FluentMultiSplitter.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.idf8r2y2gj.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"526"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"idf8r2y2gj"},{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tabs/FluentTab.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"526"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003412969283"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg="},{"Name":"original-resource","Value":"\"Kh0YI9vhH0m+YJJvQVdOvtm0zuIIGEdRv3aH6iv7Gcg=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tabs/FluentTab.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"292"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QvX29USxeujp82cmouJkXm6t8b7qAYEgrNXK43MOHhY="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.btwuipzwbp.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"btwuipzwbp"},{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/TextField/FluentTextField.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002150537634"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"464"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU="},{"Name":"original-resource","Value":"\"YXiMRc9QPIiDSy+mlSF6DtYiSYb3X+1xlsCmrMrE2IU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/TextField/FluentTextField.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"464"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AUGZo9KUwttpgpuP+JhlJOOtDxpzjoUl31FQQ6oUE/E="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001953125000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"511"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"original-resource","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"511"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jzGj8Ygtn0cwomr+m0m1Vgk2Kb33btkFLaI11QXKbFg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.v95crb0bvb.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Toolbar/FluentToolbar.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1364"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v95crb0bvb"},{"Name":"integrity","Value":"sha256-s2w5uif33eV2OeQRoRzZYM1ANZXb6He68mkQ3IZw9Bc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Toolbar/FluentToolbar.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.b0dyrub9as.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"730"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b0dyrub9as"},{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js"},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Components/Tooltip/FluentTooltip.razor.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"730"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003571428571"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU="},{"Name":"original-resource","Value":"\"pWY0aUTl5SagZBQwX/+DOHxke3fHSPoZdTQXbRQSFTU=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Components/Tooltip/FluentTooltip.razor.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4AwNbrl4KHq8H/RbAoPLmgWCsU3RWM/vs+xCd5Rp6e8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"103506"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:18:05 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070526835"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14178"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="},{"Name":"original-resource","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"103506"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:18:05 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ewdlgswx1m"},{"Name":"integrity","Value":"sha256-YoZrxlLi3FK+1wJX/azJ4txsplMIAW4NbWMb4kI16Tc="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14178"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bJV/I3ROiLo9yPHjquRj6eLxqnu0pf1FM/vWQr/ODRg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"395058"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE="},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010943194"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91380"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"dependency-group","Value":"js-initializer"},{"Name":"integrity","Value":"sha256-kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE="},{"Name":"original-resource","Value":"\"kXoVJYWXAaKRmlbeYCi7ruHaV6Z2gky3cH2L8p0CcPE=\""},{"Name":"script-type","Value":"module"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1022"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001736111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"575"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4="},{"Name":"original-resource","Value":"\"gD29yOMICDIiYM16Dl8m2EwS2lyds8DoFkgTy29qko4=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"575"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OFrSFChtzJeqZyppjt0+VhjaH2/twujVVMvQ+/e3VQg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91380"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-olkSGoB/M6RCDJYdGEbfslmdigDpf3gaxVBY0iW3dts="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1318140"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:17:50 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000003583215"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279078"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8="},{"Name":"original-resource","Value":"\"gEsAhDtb6U0KMwPlbT4fbcWPw5sEF2etLepr/Staxv8=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"279078"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8PSzwXsTlMNZ13b6eOmJ3dvY1ylMGnYnUVEig5F4Cy8="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.1dlotxxwer.css","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"7992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1dlotxxwer"},{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/css/reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"7992"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000458295142"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2181"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU="},{"Name":"original-resource","Value":"\"2wyFQ9++b6uYwv3gv265xtRV2OWnPQMN68NpUHffScU=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2181"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kl5NCbAku6eMWV3+MkqIeKoJqDMtwBPzo2EbfxSWpF4="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.f8c5bd5212.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"f8c5bd5212"},{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js"}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/initializersLoader.webview.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1121"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001941747573"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"514"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q="},{"Name":"original-resource","Value":"\"L9w4Nw5htE5XBWcy0I11eRfWwkTxtN8VSJWnitKu30Q=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/initializersLoader.webview.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"514"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZkaNBJvBrRIe+FyALN6cwfUUEv+Yiy3Nxj4gj+UK0Vg="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3439"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000821692687"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1216"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="},{"Name":"original-resource","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1216"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4Y2FoDtSYdOwiX1e0+UJhqaA/dfazhGgtKLaG26P0fU="}]},{"Route":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.sc1npuf73a.js","AssetFile":"/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/js/loading-theme.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3439"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk=\""},{"Name":"Last-Modified","Value":"Thu, 27 Nov 2025 15:08:58 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sc1npuf73a"},{"Name":"integrity","Value":"sha256-nAfxgNZU9YZJHIhvgTrKnZuE3e+Nm6C4aEFLwA+NTUk="},{"Name":"label","Value":"_content/Microsoft.FluentUI.AspNetCore.Components/js/loading-theme.js"}]},{"Route":"_framework/blazor.server.js","AssetFile":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="}]},{"Route":"_framework/blazor.server.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4="}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022393909"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"Tv+kEpSEz2WDrK9B8F6f9WkB2KflgcYkRc7goTp7O9Q=\""}]},{"Route":"_framework/blazor.server.u1n4jc5v46.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44654"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"u1n4jc5v46"},{"Name":"integrity","Value":"sha256-qeCIl06HSK7V9sIpkxZ/Vix3q9wVlk4vGeglKpmO1q4="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.j8lzlu28q6.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j8lzlu28q6"},{"Name":"integrity","Value":"sha256-N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"_framework/blazor.web.js","AssetFile":"/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/blazor.web.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"200101"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""},{"Name":"Last-Modified","Value":"Fri, 24 Oct 2025 01:06:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="}]},{"Route":"_framework/blazor.web.js","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017975912"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw="},{"Name":"original-resource","Value":"\"vRwLU/ycEDb5TwHhutOGO6cpL7nIIRxLGPG7B9IvtHw=\""}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55629"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-N8tlkDKIUX+OHJ39BCPuG/WnZZgo4n2RDrKvayFZ01s="}]},{"Route":"app.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392156863"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"original-resource","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""}]},{"Route":"app.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"6157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="}]},{"Route":"app.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs="}]},{"Route":"app.g5ndc3bl4h.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000392156863"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""}]},{"Route":"app.g5ndc3bl4h.css","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6157"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-jOG5KgrSDPeToTyOZmRsg6eOzhLIO0cXVxoovFn1M5w="},{"Name":"label","Value":"app.css"}]},{"Route":"app.g5ndc3bl4h.css.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2549"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"g5ndc3bl4h"},{"Name":"integrity","Value":"sha256-2VME7/SmpwwsfPZVhsf/0dsN59oJyJVrY+SnKOvRyXs="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"favicon.a8m5cweeeb.ico","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000182415177"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""}]},{"Route":"favicon.a8m5cweeeb.ico","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/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":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.a8m5cweeeb.ico.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a8m5cweeeb"},{"Name":"integrity","Value":"sha256-gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000182415177"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="},{"Name":"original-resource","Value":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""}]},{"Route":"favicon.ico","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/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":"\"ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:23:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ymsgpgcP5QtFkpeuQQcIdyIQH79a9gyXGLH8FjqfURs="}]},{"Route":"favicon.ico.gz","AssetFile":"/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"5481"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44=\""},{"Name":"Last-Modified","Value":"Wed, 28 Jan 2026 03:27:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gZ//GrWdkrJHpR8QYxDMRR6GYl/4gaDLwJHvHJKDe44="}]}]} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..3efe8b3 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +Ca/H9j/mzKEztOrvJTRdXP60lsCgO+2IF9z6gi9w4NI= \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.development.json b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..16cfbac --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/home/robert/Documents/repos/azure-web/FluentBlazorApp/wwwroot/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/compressed/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/jsmodules/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/Debug/net10.0/scopedcss/bundle/","/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/_framework/","/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/staticwebassets/","/home/robert/Documents/repos/azure-web/FluentBlazorApp/"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"f3doi4qufy-{0}-g5ndc3bl4h-g5ndc3bl4h.gz"},"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hp2clcwva9-{0}-a8m5cweeeb-a8m5cweeeb.gz"},"Patterns":null},"FluentBlazorApp.modules.json":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"jsmodules.build.manifest.json"},"Patterns":null},"FluentBlazorApp.modules.json.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"20yq066lo5-{0}-o32v8r49vv-o32v8r49vv.gz"},"Patterns":null},"FluentBlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"FluentBlazorApp.styles.css"},"Patterns":null},"FluentBlazorApp.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6ywlikri93-{0}-dr97trlaug-dr97trlaug.gz"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"55thtf5248-{0}-u1n4jc5v46-u1n4jc5v46.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jb6cwotjhj-{0}-j8lzlu28q6-j8lzlu28q6.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Microsoft.FluentUI.AspNetCore.Components":{"Children":{"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pqub0n3e9d-{0}-ewdlgswx1m-ewdlgswx1m.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kwrall9b0s-{0}-zbg73p58hc-zbg73p58hc.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m3ffqup1h6-{0}-kz8gc8cxma-kz8gc8cxma.gz"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map"},"Patterns":null},"Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3emkb5z5ma-{0}-sd59ooda5f-sd59ooda5f.gz"},"Patterns":null},"css":{"Children":{"reboot.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"css/reboot.css"},"Patterns":null},"reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6nn42apl8y-{0}-1dlotxxwer-1dlotxxwer.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"initializersLoader.webview.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"js/initializersLoader.webview.js"},"Patterns":null},"initializersLoader.webview.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m1yjzwotev-{0}-f8c5bd5212-f8c5bd5212.gz"},"Patterns":null},"loading-theme.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"js/loading-theme.js"},"Patterns":null},"loading-theme.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ruk4ibgzyp-{0}-sc1npuf73a-sc1npuf73a.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Accordion":{"Children":{"FluentAccordionItem.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Accordion/FluentAccordionItem.razor.js"},"Patterns":null},"FluentAccordionItem.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hepkpbjuec-{0}-l5v3n1o5hs-l5v3n1o5hs.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Anchor":{"Children":{"FluentAnchor.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Anchor/FluentAnchor.razor.js"},"Patterns":null},"FluentAnchor.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cdrmjjq1d6-{0}-dpoev2zj9b-dpoev2zj9b.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"AnchoredRegion":{"Children":{"FluentAnchoredRegion.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/AnchoredRegion/FluentAnchoredRegion.razor.js"},"Patterns":null},"FluentAnchoredRegion.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"twd6d0wh4o-{0}-73nt9uxv2t-73nt9uxv2t.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Button":{"Children":{"FluentButton.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Button/FluentButton.razor.js"},"Patterns":null},"FluentButton.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"akzl5bxou0-{0}-p6kf5zqzit-p6kf5zqzit.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox":{"Children":{"FluentCheckbox.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Checkbox/FluentCheckbox.razor.js"},"Patterns":null},"FluentCheckbox.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"cq4bmj8gmb-{0}-zjzit57lox-zjzit57lox.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DataGrid":{"Children":{"FluentDataGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DataGrid/FluentDataGrid.razor.js"},"Patterns":null},"FluentDataGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"klh9ieqob8-{0}-dvdt7c1hdi-dvdt7c1hdi.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DateTime":{"Children":{"FluentTimePicker.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DateTime/FluentTimePicker.razor.js"},"Patterns":null},"FluentTimePicker.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"qtsc4kwma6-{0}-h5k564t0jv-h5k564t0jv.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"DesignSystemProvider":{"Children":{"FluentDesignTheme.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/DesignSystemProvider/FluentDesignTheme.razor.js"},"Patterns":null},"FluentDesignTheme.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4jvn6qpxj5-{0}-7i47nr1axg-7i47nr1axg.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Dialog":{"Children":{"FluentDialogProvider.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Dialog/FluentDialogProvider.razor.js"},"Patterns":null},"FluentDialogProvider.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vhycmzqsg2-{0}-oy1cuw4jhq-oy1cuw4jhq.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Divider":{"Children":{"FluentDivider.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Divider/FluentDivider.razor.js"},"Patterns":null},"FluentDivider.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7g337ulk4n-{0}-iy34mpf72d-iy34mpf72d.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Grid":{"Children":{"FluentGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Grid/FluentGrid.razor.js"},"Patterns":null},"FluentGrid.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6mwvvlkmgj-{0}-hi1gwvth64-hi1gwvth64.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"HorizontalScroll":{"Children":{"FluentHorizontalScroll.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},"Patterns":null},"FluentHorizontalScroll.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pfc9to5k3q-{0}-5pcucyxosc-5pcucyxosc.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"InputFile":{"Children":{"FluentInputFile.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/InputFile/FluentInputFile.razor.js"},"Patterns":null},"FluentInputFile.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h0qxm5u0yy-{0}-vjluklws0l-vjluklws0l.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyCode":{"Children":{"FluentKeyCode.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/KeyCode/FluentKeyCode.razor.js"},"Patterns":null},"FluentKeyCode.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"win2gt64sq-{0}-9juufzcgdk-9juufzcgdk.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Label":{"Children":{"FluentInputLabel.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Label/FluentInputLabel.razor.js"},"Patterns":null},"FluentInputLabel.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ijuf810ucb-{0}-xp2f0e0rh3-xp2f0e0rh3.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"List":{"Children":{"FluentAutocomplete.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/FluentAutocomplete.razor.js"},"Patterns":null},"FluentAutocomplete.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"6o9gthdpke-{0}-ikjxvulr4w-ikjxvulr4w.gz"},"Patterns":null},"FluentCombobox.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/FluentCombobox.razor.js"},"Patterns":null},"FluentCombobox.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"tb98bamshq-{0}-afevzs963z-afevzs963z.gz"},"Patterns":null},"ListComponentBase.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/List/ListComponentBase.razor.js"},"Patterns":null},"ListComponentBase.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ffdjjohsnc-{0}-mmp1yy7un5-mmp1yy7un5.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Menu":{"Children":{"FluentMenu.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Menu/FluentMenu.razor.js"},"Patterns":null},"FluentMenu.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pn46o4hdgm-{0}-ntzi26y3om-ntzi26y3om.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"NavMenu":{"Children":{"FluentNavMenu.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/NavMenu/FluentNavMenu.razor.js"},"Patterns":null},"FluentNavMenu.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"4sjayj892b-{0}-9fmja7pljs-9fmja7pljs.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Overflow":{"Children":{"FluentOverflow.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Overflow/FluentOverflow.razor.js"},"Patterns":null},"FluentOverflow.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mm8wr5jb95-{0}-rgycuwl3sw-rgycuwl3sw.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Overlay":{"Children":{"FluentOverlay.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Overlay/FluentOverlay.razor.js"},"Patterns":null},"FluentOverlay.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"wmgko3ir4p-{0}-kjm33rwg1a-kjm33rwg1a.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"PullToRefresh":{"Children":{"FluentPullToRefresh.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/PullToRefresh/FluentPullToRefresh.razor.js"},"Patterns":null},"FluentPullToRefresh.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jq2jihf5fr-{0}-awzanx0pu8-awzanx0pu8.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Search":{"Children":{"FluentSearch.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Search/FluentSearch.razor.js"},"Patterns":null},"FluentSearch.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"uslingtyva-{0}-m0sdc2vg34-m0sdc2vg34.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Slider":{"Children":{"FluentSlider.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Slider/FluentSlider.razor.js"},"Patterns":null},"FluentSlider.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"2b4v2q74ar-{0}-0b0bj86z40-0b0bj86z40.gz"},"Patterns":null},"FluentSliderLabel.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Slider/FluentSliderLabel.razor.js"},"Patterns":null},"FluentSliderLabel.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5eye7ha8pe-{0}-e5lgg05xwp-e5lgg05xwp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"SortableList":{"Children":{"FluentSortableList.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/SortableList/FluentSortableList.razor.js"},"Patterns":null},"FluentSortableList.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fiqznfocyn-{0}-ki10xp5gks-ki10xp5gks.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Splitter":{"Children":{"FluentMultiSplitter.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Splitter/FluentMultiSplitter.razor.js"},"Patterns":null},"FluentMultiSplitter.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5dcvuemm5a-{0}-s9hcthfn4x-s9hcthfn4x.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Tabs":{"Children":{"FluentTab.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Tabs/FluentTab.razor.js"},"Patterns":null},"FluentTab.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sc7iw8bo2n-{0}-idf8r2y2gj-idf8r2y2gj.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"TextField":{"Children":{"FluentTextField.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/TextField/FluentTextField.razor.js"},"Patterns":null},"FluentTextField.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sbcuig79xm-{0}-btwuipzwbp-btwuipzwbp.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Toolbar":{"Children":{"FluentToolbar.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Toolbar/FluentToolbar.razor.js"},"Patterns":null},"FluentToolbar.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"713i7dud0v-{0}-v95crb0bvb-v95crb0bvb.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Tooltip":{"Children":{"FluentTooltip.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Components/Tooltip/FluentTooltip.razor.js"},"Patterns":null},"FluentTooltip.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"is0nail857-{0}-b0dyrub9as-b0dyrub9as.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ljiijnwn0n-{0}-13ja33weya-13ja33weya.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/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/swae.build.ex.cache b/GrafanaBlazor/FluentBlazorApp/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.dgspec.json b/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4d6cb53 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.dgspec.json @@ -0,0 +1,500 @@ +{ + "format": 1, + "restore": { + "/home/robert/Documents/repos/azure-web/FluentBlazorApp/FluentBlazorApp.csproj": {} + }, + "projects": { + "/home/robert/Documents/repos/azure-web/FluentBlazorApp/FluentBlazorApp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/robert/Documents/repos/azure-web/FluentBlazorApp/FluentBlazorApp.csproj", + "projectName": "FluentBlazorApp", + "projectPath": "/home/robert/Documents/repos/azure-web/FluentBlazorApp/FluentBlazorApp.csproj", + "packagesPath": "/home/robert/.nuget/packages/", + "outputPath": "/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/robert/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )", + "autoReferenced": true + }, + "Microsoft.FluentUI.AspNetCore.Components": { + "target": "Package", + "version": "[4.13.2, )" + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons": { + "target": "Package", + "version": "[4.13.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.100/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/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.g.props b/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.g.props new file mode 100644 index 0000000..89ac10c --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/robert/.nuget/packages/ + /home/robert/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.g.targets b/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.g.targets new file mode 100644 index 0000000..79075a4 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/FluentBlazorApp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/obj/project.assets.json b/GrafanaBlazor/FluentBlazorApp/obj/project.assets.json new file mode 100644 index 0000000..8e64b19 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/project.assets.json @@ -0,0 +1,664 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.AspNetCore.App.Internal.Assets/10.0.0": { + "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.FluentUI.AspNetCore.Components/4.13.2": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/Microsoft.FluentUI.AspNetCore.Components.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.FluentUI.AspNetCore.Components.props": {} + } + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons/4.13.2": { + "type": "package", + "dependencies": { + "Microsoft.FluentUI.AspNetCore.Components": "4.12.0" + }, + "compile": { + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll": {} + }, + "runtime": { + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll": {}, + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.App.Internal.Assets/10.0.0": { + "sha512": "0gZrESKwnlmbE8Br8XIy3kk7Pj0++9T2Ly+A8BFYYgo5EgfqWEln26cho+l92KOaHUzclhvz314RiwE910s24g==", + "type": "package", + "path": "microsoft.aspnetcore.app.internal.assets/10.0.0", + "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.0.nupkg.sha512", + "microsoft.aspnetcore.app.internal.assets.nuspec" + ] + }, + "Microsoft.FluentUI.AspNetCore.Components/4.13.2": { + "sha512": "OqJFJiIz32BRBcxVCLX51s6/SNXVe6X16kKBcwxb7ZzZ14w1pT2OcHtqPxfj7NYZzAyA9gpX5EhvAdGHURYD7g==", + "type": "package", + "path": "microsoft.fluentui.aspnetcore.components/4.13.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/Microsoft.FluentUI.AspNetCore.Components.props", + "buildMultiTargeting/Microsoft.FluentUI.AspNetCore.Components.props", + "buildTransitive/Microsoft.FluentUI.AspNetCore.Components.props", + "icon.png", + "lib/net10.0/Microsoft.FluentUI.AspNetCore.Components.dll", + "lib/net10.0/Microsoft.FluentUI.AspNetCore.Components.xml", + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.dll", + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.xml", + "lib/net9.0/Microsoft.FluentUI.AspNetCore.Components.dll", + "lib/net9.0/Microsoft.FluentUI.AspNetCore.Components.xml", + "microsoft.fluentui.aspnetcore.components.4.13.2.nupkg.sha512", + "microsoft.fluentui.aspnetcore.components.nuspec", + "staticwebassets/Components/Accordion/FluentAccordionItem.razor.js", + "staticwebassets/Components/Anchor/FluentAnchor.razor.js", + "staticwebassets/Components/AnchoredRegion/FluentAnchoredRegion.razor.js", + "staticwebassets/Components/Button/FluentButton.razor.js", + "staticwebassets/Components/Checkbox/FluentCheckbox.razor.js", + "staticwebassets/Components/DataGrid/FluentDataGrid.razor.js", + "staticwebassets/Components/DateTime/FluentTimePicker.razor.js", + "staticwebassets/Components/DesignSystemProvider/FluentDesignTheme.razor.js", + "staticwebassets/Components/Dialog/FluentDialogProvider.razor.js", + "staticwebassets/Components/Divider/FluentDivider.razor.js", + "staticwebassets/Components/Grid/FluentGrid.razor.js", + "staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js", + "staticwebassets/Components/InputFile/FluentInputFile.razor.js", + "staticwebassets/Components/KeyCode/FluentKeyCode.razor.js", + "staticwebassets/Components/Label/FluentInputLabel.razor.js", + "staticwebassets/Components/List/FluentAutocomplete.razor.js", + "staticwebassets/Components/List/FluentCombobox.razor.js", + "staticwebassets/Components/List/ListComponentBase.razor.js", + "staticwebassets/Components/Menu/FluentMenu.razor.js", + "staticwebassets/Components/NavMenu/FluentNavMenu.razor.js", + "staticwebassets/Components/Overflow/FluentOverflow.razor.js", + "staticwebassets/Components/Overlay/FluentOverlay.razor.js", + "staticwebassets/Components/PullToRefresh/FluentPullToRefresh.razor.js", + "staticwebassets/Components/Search/FluentSearch.razor.js", + "staticwebassets/Components/Slider/FluentSlider.razor.js", + "staticwebassets/Components/Slider/FluentSliderLabel.razor.js", + "staticwebassets/Components/SortableList/FluentSortableList.razor.js", + "staticwebassets/Components/Splitter/FluentMultiSplitter.razor.js", + "staticwebassets/Components/Tabs/FluentTab.razor.js", + "staticwebassets/Components/TextField/FluentTextField.razor.js", + "staticwebassets/Components/Toolbar/FluentToolbar.razor.js", + "staticwebassets/Components/Tooltip/FluentTooltip.razor.js", + "staticwebassets/Microsoft.FluentUI.AspNetCore.Components.ewdlgswx1m.bundle.scp.css", + "staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js", + "staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.LEGAL.txt", + "staticwebassets/Microsoft.FluentUI.AspNetCore.Components.lib.module.js.map", + "staticwebassets/css/reboot.css", + "staticwebassets/js/initializersLoader.webview.js", + "staticwebassets/js/loading-theme.js" + ] + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons/4.13.2": { + "sha512": "1AJ7yh79ELaPzcAdAwb7W0qvpTyVzh3xYGjw8Ibx+azujmSiUk5G0E7i2F4CQybVsAVN1f6l/CKO08VWKNGi9w==", + "type": "package", + "path": "microsoft.fluentui.aspnetcore.components.icons/4.13.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Color.dll", + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Filled.dll", + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Light.dll", + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.Regular.dll", + "lib/net8.0/Microsoft.FluentUI.AspNetCore.Components.Icons.dll", + "microsoft.fluentui.aspnetcore.components.icons.4.13.2.nupkg.sha512", + "microsoft.fluentui.aspnetcore.components.icons.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Microsoft.AspNetCore.App.Internal.Assets >= 10.0.0", + "Microsoft.FluentUI.AspNetCore.Components >= 4.13.2", + "Microsoft.FluentUI.AspNetCore.Components.Icons >= 4.13.2" + ] + }, + "packageFolders": { + "/home/robert/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/robert/Documents/repos/azure-web/FluentBlazorApp/FluentBlazorApp.csproj", + "projectName": "FluentBlazorApp", + "projectPath": "/home/robert/Documents/repos/azure-web/FluentBlazorApp/FluentBlazorApp.csproj", + "packagesPath": "/home/robert/.nuget/packages/", + "outputPath": "/home/robert/Documents/repos/azure-web/FluentBlazorApp/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/robert/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "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.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.AspNetCore.App.Internal.Assets": { + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )", + "autoReferenced": true + }, + "Microsoft.FluentUI.AspNetCore.Components": { + "target": "Package", + "version": "[4.13.2, )" + }, + "Microsoft.FluentUI.AspNetCore.Components.Icons": { + "target": "Package", + "version": "[4.13.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.100/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/GrafanaBlazor/FluentBlazorApp/obj/project.nuget.cache b/GrafanaBlazor/FluentBlazorApp/obj/project.nuget.cache new file mode 100644 index 0000000..28d1bd8 --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/obj/project.nuget.cache @@ -0,0 +1,12 @@ +{ + "version": 2, + "dgSpecHash": "tHGFnoFv6Ak=", + "success": true, + "projectFilePath": "/home/robert/Documents/repos/azure-web/FluentBlazorApp/FluentBlazorApp.csproj", + "expectedPackageFiles": [ + "/home/robert/.nuget/packages/microsoft.aspnetcore.app.internal.assets/10.0.0/microsoft.aspnetcore.app.internal.assets.10.0.0.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components/4.13.2/microsoft.fluentui.aspnetcore.components.4.13.2.nupkg.sha512", + "/home/robert/.nuget/packages/microsoft.fluentui.aspnetcore.components.icons/4.13.2/microsoft.fluentui.aspnetcore.components.icons.4.13.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/GrafanaBlazor/FluentBlazorApp/wwwroot/app.css b/GrafanaBlazor/FluentBlazorApp/wwwroot/app.css new file mode 100644 index 0000000..513c23f --- /dev/null +++ b/GrafanaBlazor/FluentBlazorApp/wwwroot/app.css @@ -0,0 +1,219 @@ +@import '_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css'; + +body { + --body-font: "Segoe UI Variable", "Segoe UI", sans-serif; + font-family: var(--body-font); + font-size: var(--type-ramp-base-font-size); + line-height: var(--type-ramp-base-line-height); + margin: 0; +} + +.navmenu-icon { + display: none; +} + +.main { + min-height: calc(100dvh - 86px); + color: var(--neutral-foreground-rest); + align-items: stretch !important; +} + +.body-content { + align-self: stretch; + height: calc(100dvh - 86px) !important; + display: flex; +} + +.content { + padding: 0.5rem 1.5rem; + align-self: stretch !important; + width: 100%; +} + +.manage { + width: 100dvw; +} + +footer { + background: var(--neutral-layer-4); + color: var(--neutral-foreground-rest); + align-items: center; + padding: 10px 10px; +} + + footer a { + color: var(--neutral-foreground-rest); + text-decoration: none; + } + + footer a:focus { + outline: 1px dashed; + outline-offset: 3px; + } + + footer a:hover { + text-decoration: underline; + } + +.alert { + border: 1px dashed var(--accent-fill-rest); + padding: 5px; + margin: 10px 0; +} + +.alert-danger { + border: 1px dashed var(--error); +} + +.alert-success { + border: 1px dashed var(--success); +} + +.alert-warning { + border: 1px dashed var(--warning); +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; + margin: 20px 0; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::before { + content: "An error has occurred. " + } + +.loading-progress { + position: relative; + display: block; + width: 8rem; + height: 8rem; + margin: 20vh auto 1rem auto; +} + + .loading-progress circle { + fill: none; + stroke: #e0e0e0; + stroke-width: 0.6rem; + transform-origin: 50% 50%; + transform: rotate(-90deg); + } + + .loading-progress circle:last-child { + stroke: #1b6ec2; + stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%; + transition: stroke-dasharray 0.05s ease-in-out; + } + +.loading-progress-text { + position: absolute; + text-align: center; + font-weight: bold; + inset: calc(20vh + 3.25rem) 0 auto 0.2rem; +} + + .loading-progress-text:after { + content: var(--blazor-load-percentage-text, "Loading"); + } + +code { + color: #c02d76; +} + +@media (max-width: 600px) { + .header-gutters { + margin: 0.5rem 3rem 0.5rem 1.5rem !important; + } + + [dir="rtl"] .header-gutters { + margin: 0.5rem 1.5rem 0.5rem 3rem !important; + } + + .main { + flex-direction: column !important; + row-gap: 0 !important; + } + + nav.sitenav { + width: 100%; + height: 100%; + } + + #main-menu { + width: 100% !important; + } + + #main-menu > div:first-child:is(.expander) { + display: none; + } + + .navmenu { + width: 100%; + } + + #navmenu-toggle { + appearance: none; + } + + #navmenu-toggle ~ nav { + display: none; + } + + #navmenu-toggle:checked ~ nav { + display: block; + } + + .navmenu-icon { + cursor: pointer; + z-index: 10; + display: block; + position: absolute; + top: 15px; + left: unset; + right: 20px; + width: 20px; + height: 20px; + border: none; + } + + [dir="rtl"] .navmenu-icon { + left: 20px; + right: unset; + } +} + +/* Table */ + +table { + width: 100%; + border-collapse: collapse; + border-spacing: 0; +} + + table td, + table th { + padding: var(--spacingVerticalS) var(--spacingHorizontalM); + text-align: left; + vertical-align: middle; + border-bottom: calc(var(--stroke-width) * 1px) solid var(--neutral-stroke-divider-rest); + } diff --git a/GrafanaBlazor/FluentBlazorApp/wwwroot/favicon.ico b/GrafanaBlazor/FluentBlazorApp/wwwroot/favicon.ico new file mode 100644 index 0000000..e189d8e Binary files /dev/null and b/GrafanaBlazor/FluentBlazorApp/wwwroot/favicon.ico differ diff --git a/GrafanaBlazor/README.md b/GrafanaBlazor/README.md new file mode 100644 index 0000000..06da7b4 --- /dev/null +++ b/GrafanaBlazor/README.md @@ -0,0 +1,303 @@ +# Blazor Server App with Grafana Observability Stack + +This project provides a complete infrastructure-as-code setup for deploying a Blazor Server application to Azure with comprehensive logging and metrics capabilities for use with Grafana. + +## Architecture + +The solution includes: + +- **Azure App Service** - Hosting the Blazor Server application +- **Application Insights** - Azure-native monitoring and telemetry +- **Log Analytics Workspace** - Centralized logging +- **Prometheus Metrics** - Exposed at `/metrics` endpoint +- **OpenTelemetry** - Distributed tracing support +- **Serilog** - Structured logging + +## Project Structure + +``` +. +├── main.bicep # Main Bicep file (subscription-level) +├── modules/ +│ ├── monitoring.bicep # Log Analytics & Application Insights +│ └── appService.bicep # App Service Plan & Web App +├── BlazorApp/ # Blazor Server application +│ ├── Components/ +│ │ ├── Layout/ +│ │ │ ├── MainLayout.razor +│ │ │ └── NavMenu.razor +│ │ └── Pages/ +│ │ ├── Home.razor +│ │ ├── Metrics.razor # Metrics demo page +│ │ └── Logs.razor # Logging demo page +│ ├── Program.cs # App configuration +│ ├── BlazorApp.csproj # Project file with dependencies +│ └── appsettings.json # Configuration +├── deploy.sh # Deployment script +└── README.md # This file +``` + +## Prerequisites + +- [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli) installed and configured +- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) +- Azure subscription with appropriate permissions +- [Grafana](https://grafana.com/) instance (can be Azure Managed Grafana or self-hosted) + +## Features + +### Logging +- **Serilog** for structured logging with console and file outputs +- **Application Insights** integration for Azure-native logging +- Log levels: Information, Warning, Error +- Structured log properties for better querying + +### Metrics +- **Prometheus** metrics exposed at `/metrics` endpoint +- **OpenTelemetry** instrumentation for ASP.NET Core and HTTP clients +- Custom metrics tracking (counters, timers) +- Health check endpoint at `/health` + +### Demo Pages +- **Home** - Overview and quick log generation +- **Metrics** - Interactive metrics demonstration +- **Logs** - Test different log levels and structured logging + +## Deployment + +### 1. Deploy Azure Infrastructure + +```bash +# Login to Azure +az login + +# Run the deployment script +./deploy.sh +``` + +This will create: +- Resource Group +- App Service Plan (Basic B1 tier) +- Web App (Linux, .NET 8) +- Application Insights +- Log Analytics Workspace + +### 2. Build and Deploy the Application + +```bash +# Navigate to the app directory +cd BlazorApp + +# Restore dependencies +dotnet restore + +# Build the application +dotnet build + +# Publish the application +dotnet publish -c Release -o ./publish + +# Create deployment package +cd publish +zip -r ../app.zip . +cd .. + +# Deploy to Azure +az webapp deployment source config-zip \ + --resource-group rg-blazor-grafana \ + --name \ + --src app.zip +``` + +### 3. Verify Deployment + +Once deployed, you can access: +- **Application**: `https://.azurewebsites.net` +- **Metrics**: `https://.azurewebsites.net/metrics` +- **Health Check**: `https://.azurewebsites.net/health` + +## Grafana Integration + +### Option 1: Prometheus Data Source + +1. In Grafana, add a new Prometheus data source +2. Set the URL to: `https://.azurewebsites.net` +3. Configure scrape interval (e.g., 15s) +4. Save and test the connection + +### Option 2: Azure Monitor Data Source + +1. In Grafana, add an Azure Monitor data source +2. Configure with your Azure subscription details +3. Point to your Application Insights instance +4. You'll have access to: + - Application logs + - Traces + - Metrics + - Dependencies + +### Creating Dashboards + +**Sample Queries for Prometheus:** +```promql +# Request rate +rate(http_requests_received_total[5m]) + +# Request duration +histogram_quantile(0.95, rate(http_request_duration_seconds_bucket[5m])) + +# Error rate +rate(http_requests_received_total{status_code=~"5.."}[5m]) +``` + +**Sample Queries for Azure Monitor:** +```kusto +// Application logs +traces +| where timestamp > ago(1h) +| project timestamp, message, severityLevel + +// Request performance +requests +| where timestamp > ago(1h) +| summarize avg(duration), percentile(duration, 95) by bin(timestamp, 5m) + +// Custom events +customEvents +| where timestamp > ago(1h) +| summarize count() by name +``` + +## Available Metrics + +The application exposes the following metrics at `/metrics`: + +- `http_requests_received_total` - Total HTTP requests received +- `http_request_duration_seconds` - HTTP request duration histogram +- `http_requests_in_progress` - Current HTTP requests in progress +- `process_cpu_seconds_total` - Process CPU time +- `process_working_set_bytes` - Process memory usage +- `dotnet_*` - Various .NET runtime metrics + +## Local Development + +```bash +cd BlazorApp +dotnet run +``` + +Access the app at `https://localhost:5001` or `http://localhost:5000` + +## Configuration + +### appsettings.json + +Configure logging levels and Application Insights: + +```json +{ + "Serilog": { + "MinimumLevel": { + "Default": "Information", + "Override": { + "Microsoft": "Warning" + } + } + }, + "ApplicationInsights": { + "ConnectionString": "your-connection-string" + } +} +``` + +### Environment Variables + +The following environment variables are automatically set in Azure: +- `APPLICATIONINSIGHTS_CONNECTION_STRING` +- `APPINSIGHTS_INSTRUMENTATIONKEY` +- `ASPNETCORE_ENVIRONMENT` + +## Customization + +### Adding Custom Metrics + +```csharp +// In your Razor component +@using Prometheus + +private static readonly Counter CustomCounter = Metrics + .CreateCounter("myapp_custom_counter", "Description"); + +private void MyMethod() +{ + CustomCounter.Inc(); +} +``` + +### Adding Custom Logs + +```csharp +@inject ILogger Logger + +Logger.LogInformation("User {UserId} performed action {Action}", + userId, actionName); +``` + +## Monitoring Best Practices + +1. **Use structured logging** - Always use parameterized log messages +2. **Set appropriate log levels** - Don't overuse Information level +3. **Add context** - Include relevant properties in logs +4. **Monitor error rates** - Set up alerts in Grafana +5. **Track business metrics** - Not just technical metrics +6. **Use distributed tracing** - Leverage OpenTelemetry spans + +## Troubleshooting + +### Application Insights not receiving data +- Check the connection string in Azure portal +- Verify Application Insights instrumentation key +- Check network connectivity from App Service + +### Prometheus metrics not showing +- Ensure `/metrics` endpoint is accessible +- Check if Prometheus is configured correctly in Grafana +- Verify App Service networking rules + +### Logs not appearing +- Check Log Analytics workspace connection +- Verify Serilog configuration +- Check file permissions for log files + +## Cost Considerations + +This setup uses: +- App Service Plan: Basic B1 (~$55/month) +- Application Insights: Pay-as-you-go (first 5GB free) +- Log Analytics: Pay-as-you-go (first 5GB free) + +To reduce costs: +- Use Free tier App Service for testing +- Adjust log retention periods +- Implement sampling in Application Insights + +## Clean Up + +To delete all resources: + +```bash +az group delete --name rg-blazor-grafana --yes --no-wait +``` + +## Resources + +- [Blazor Documentation](https://docs.microsoft.com/aspnet/core/blazor/) +- [Application Insights](https://docs.microsoft.com/azure/azure-monitor/app/app-insights-overview) +- [Prometheus](https://prometheus.io/docs/introduction/overview/) +- [Grafana](https://grafana.com/docs/) +- [OpenTelemetry](https://opentelemetry.io/docs/) +- [Serilog](https://serilog.net/) + +## License + +This project is provided as-is for educational and demonstration purposes. diff --git a/GrafanaBlazor/deploy.sh b/GrafanaBlazor/deploy.sh new file mode 100755 index 0000000..902123a --- /dev/null +++ b/GrafanaBlazor/deploy.sh @@ -0,0 +1,67 @@ +#!/bin/bash + +# Blazor App with Grafana Stack - Deployment Script + +set -e + +echo "===================================" +echo "Blazor Grafana Stack Deployment" +echo "===================================" + +# Variables +LOCATION="eastus" +RESOURCE_GROUP="rg-blazor-grafana" +DEPLOYMENT_NAME="blazor-deployment-$(date +%Y%m%d-%H%M%S)" + +# Check if Azure CLI is installed +if ! command -v az &> /dev/null; then + echo "Error: Azure CLI is not installed. Please install it first." + exit 1 +fi + +# Check if logged in +echo "Checking Azure login status..." +az account show > /dev/null 2>&1 || { echo "Please login to Azure first: az login"; exit 1; } + +# Deploy the infrastructure +echo "" +echo "Deploying infrastructure to Azure..." +echo "Location: $LOCATION" +echo "Deployment Name: $DEPLOYMENT_NAME" +echo "" + +az deployment sub create \ + --name "$DEPLOYMENT_NAME" \ + --location "$LOCATION" \ + --template-file ./.bicep/main.bicep \ + --parameters resourceGroupName="$RESOURCE_GROUP" location="$LOCATION" \ + --output table + +# Get outputs +echo "" +echo "Retrieving deployment outputs..." +WEBAPP_NAME=$(az deployment sub show --name "$DEPLOYMENT_NAME" --query properties.outputs.webAppName.value -o tsv) +WEBAPP_URL=$(az deployment sub show --name "$DEPLOYMENT_NAME" --query properties.outputs.webAppUrl.value -o tsv) + +echo "" +echo "===================================" +echo "Deployment Complete!" +echo "===================================" +echo "Resource Group: $RESOURCE_GROUP" +echo "Web App Name: $WEBAPP_NAME" +echo "Web App URL: $WEBAPP_URL" +echo "" +echo "Next Steps:" +echo "1. Build and publish your Blazor app:" +echo " cd BlazorApp" +echo " dotnet publish -c Release -o ./publish" +echo "" +echo "2. Deploy to Azure:" +echo " cd publish" +echo " zip -r app.zip ." +echo " az webapp deployment source config-zip --resource-group $RESOURCE_GROUP --name $WEBAPP_NAME --src app.zip" +echo "" +echo "3. Access metrics at: $WEBAPP_URL/metrics" +echo "4. Access health check at: $WEBAPP_URL/health" +echo "" +echo "===================================" diff --git a/GrafanaBlazor/main.bicep b/GrafanaBlazor/main.bicep new file mode 100644 index 0000000..b0a5090 --- /dev/null +++ b/GrafanaBlazor/main.bicep @@ -0,0 +1,58 @@ +targetScope = 'subscription' + +@description('The name of the resource group') +param resourceGroupName string = 'rg-blazor-grafana' + +@description('The location for all resources') +param location string = 'eastus' + +@description('The name of the App Service Plan') +param appServicePlanName string = 'asp-blazor-app' + +@description('The name of the Web App') +param webAppName string = 'webapp-blazor-${uniqueString(resourceGroupName)}' + +@description('The name of the Application Insights instance') +param appInsightsName string = 'ai-blazor-app' + +@description('The name of the Log Analytics Workspace') +param logAnalyticsWorkspaceName string = 'law-blazor-app' + +// Create the resource group +resource resourceGroup 'Microsoft.Resources/resourceGroups@2021-04-01' = { + name: resourceGroupName + location: location +} + +// Deploy the logging and monitoring infrastructure +module monitoring 'modules/monitoring.bicep' = { + scope: resourceGroup + name: 'monitoring-deployment' + params: { + location: location + appInsightsName: appInsightsName + logAnalyticsWorkspaceName: logAnalyticsWorkspaceName + } +} + +// Deploy the App Service infrastructure +module appService 'modules/appService.bicep' = { + scope: resourceGroup + name: 'appservice-deployment' + params: { + location: location + appServicePlanName: appServicePlanName + webAppName: webAppName + appInsightsInstrumentationKey: monitoring.outputs.instrumentationKey + appInsightsConnectionString: monitoring.outputs.connectionString + } +} + +// Outputs +output resourceGroupName string = resourceGroup.name +output webAppName string = appService.outputs.webAppName +output webAppUrl string = appService.outputs.webAppUrl +output appInsightsName string = monitoring.outputs.appInsightsName +output logAnalyticsWorkspaceId string = monitoring.outputs.workspaceId +output grafanaName string = monitoring.outputs.grafanaName +output grafanaEndpoint string = monitoring.outputs.grafanaEndpoint