diff --git a/.vs/CanRead.slnx/FileContentIndex/7fbc8a87-186b-4af6-b660-f4260ef6eeff.vsidx b/.vs/CanRead.slnx/FileContentIndex/7fbc8a87-186b-4af6-b660-f4260ef6eeff.vsidx new file mode 100644 index 0000000..a326ea1 Binary files /dev/null and b/.vs/CanRead.slnx/FileContentIndex/7fbc8a87-186b-4af6-b660-f4260ef6eeff.vsidx differ diff --git a/.vs/CanRead.slnx/v18/.wsuo b/.vs/CanRead.slnx/v18/.wsuo new file mode 100644 index 0000000..688f281 Binary files /dev/null and b/.vs/CanRead.slnx/v18/.wsuo differ diff --git a/.vs/CanRead.slnx/v18/DocumentLayout.backup.json b/.vs/CanRead.slnx/v18/DocumentLayout.backup.json new file mode 100644 index 0000000..978bd43 --- /dev/null +++ b/.vs/CanRead.slnx/v18/DocumentLayout.backup.json @@ -0,0 +1,31 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\Admin\\source\\repos\\CanRead\\", + "Documents": [], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": -1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{1c64b9c2-e352-428e-a56d-0ace190b99a6}" + }, + { + "$type": "Bookmark", + "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}" + }, + { + "$type": "Bookmark", + "Name": "ST:0:0:{3ae79031-e1bc-11d0-8f78-00a0c9110057}" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/.vs/CanRead.slnx/v18/DocumentLayout.json b/.vs/CanRead.slnx/v18/DocumentLayout.json new file mode 100644 index 0000000..978bd43 --- /dev/null +++ b/.vs/CanRead.slnx/v18/DocumentLayout.json @@ -0,0 +1,31 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\Admin\\source\\repos\\CanRead\\", + "Documents": [], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": -1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{1c64b9c2-e352-428e-a56d-0ace190b99a6}" + }, + { + "$type": "Bookmark", + "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}" + }, + { + "$type": "Bookmark", + "Name": "ST:0:0:{3ae79031-e1bc-11d0-8f78-00a0c9110057}" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/.vs/CanRead/v18/workspaceFileList.bin b/.vs/CanRead/v18/workspaceFileList.bin new file mode 100644 index 0000000..1ec96bf Binary files /dev/null and b/.vs/CanRead/v18/workspaceFileList.bin differ diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..1e82804 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,8 @@ +{ + "ExpandedNodes": [ + "", + "\\BlazorApp", + "\\BlazorApp\\bin\\Release\\net10.0" + ], + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..3a6365d Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/BlazorApp.slnx b/BlazorApp.slnx new file mode 100644 index 0000000..d291f7e --- /dev/null +++ b/BlazorApp.slnx @@ -0,0 +1,3 @@ + + + diff --git a/BlazorApp/BlazorApp.csproj b/BlazorApp/BlazorApp.csproj new file mode 100644 index 0000000..8cca46c --- /dev/null +++ b/BlazorApp/BlazorApp.csproj @@ -0,0 +1,15 @@ + + + + net10.0 + enable + enable + true + + + + + + + + diff --git a/BlazorApp/BlazorApp.csproj.user b/BlazorApp/BlazorApp.csproj.user new file mode 100644 index 0000000..3f0d660 --- /dev/null +++ b/BlazorApp/BlazorApp.csproj.user @@ -0,0 +1,7 @@ + + + + https + D:\CanRead\BlazorApp\BlazorApp\Properties\PublishProfiles\FolderProfile.pubxml + + \ No newline at end of file diff --git a/BlazorApp/Components/App.razor b/BlazorApp/Components/App.razor new file mode 100644 index 0000000..7f350ca --- /dev/null +++ b/BlazorApp/Components/App.razor @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BlazorApp/Components/Layout/MainLayout.razor b/BlazorApp/Components/Layout/MainLayout.razor new file mode 100644 index 0000000..78624f3 --- /dev/null +++ b/BlazorApp/Components/Layout/MainLayout.razor @@ -0,0 +1,23 @@ +@inherits LayoutComponentBase + +
+ + +
+
+ About +
+ +
+ @Body +
+
+
+ +
+ An unhandled error has occurred. + Reload + 🗙 +
diff --git a/BlazorApp/Components/Layout/MainLayout.razor.css b/BlazorApp/Components/Layout/MainLayout.razor.css new file mode 100644 index 0000000..38d1f25 --- /dev/null +++ b/BlazorApp/Components/Layout/MainLayout.razor.css @@ -0,0 +1,98 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + +main { + flex: 1; +} + +.sidebar { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row ::deep a, .top-row ::deep .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row ::deep a:hover, .top-row ::deep .btn-link:hover { + text-decoration: underline; + } + + .top-row ::deep a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row { + justify-content: space-between; + } + + .top-row ::deep a, .top-row ::deep .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page { + flex-direction: row; + } + + .sidebar { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth ::deep a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row, article { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + 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; + } diff --git a/BlazorApp/Components/Layout/NavMenu.razor b/BlazorApp/Components/Layout/NavMenu.razor new file mode 100644 index 0000000..aee93e7 --- /dev/null +++ b/BlazorApp/Components/Layout/NavMenu.razor @@ -0,0 +1,24 @@ + + + + + + diff --git a/BlazorApp/Components/Layout/NavMenu.razor.css b/BlazorApp/Components/Layout/NavMenu.razor.css new file mode 100644 index 0000000..a2aeace --- /dev/null +++ b/BlazorApp/Components/Layout/NavMenu.razor.css @@ -0,0 +1,105 @@ +.navbar-toggler { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand { + font-size: 1.1rem; +} + +.bi { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type { + padding-top: 1rem; + } + + .nav-item:last-of-type { + padding-bottom: 1rem; + } + + .nav-item ::deep .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item ::deep a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item ::deep .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler { + display: none; + } + + .nav-scrollable { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/BlazorApp/Components/Layout/ReconnectModal.razor b/BlazorApp/Components/Layout/ReconnectModal.razor new file mode 100644 index 0000000..49d916b --- /dev/null +++ b/BlazorApp/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/BlazorApp/Components/Layout/ReconnectModal.razor.css b/BlazorApp/Components/Layout/ReconnectModal.razor.css new file mode 100644 index 0000000..3ad3773 --- /dev/null +++ b/BlazorApp/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/BlazorApp/Components/Layout/ReconnectModal.razor.js b/BlazorApp/Components/Layout/ReconnectModal.razor.js new file mode 100644 index 0000000..e52a190 --- /dev/null +++ b/BlazorApp/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/BlazorApp/Components/Pages/Can.razor b/BlazorApp/Components/Pages/Can.razor new file mode 100644 index 0000000..81b2c15 --- /dev/null +++ b/BlazorApp/Components/Pages/Can.razor @@ -0,0 +1,127 @@ +@page "/can" +@inject ICanService CanService +@implements IDisposable + +
+
+ + +
+
CAN Monitor (Live View)
+ +
+ + + +
+
+ + +
+ + + + + + + + + + + + + @foreach (var msg in messages.Values.OrderBy(m => m.Id)) + { + + + + + + + + + } + +
TimeCAN-IDMeaningLengthRaw DataResult
@msg.Timestamp.ToString("HH:mm:ss.fff") + @msg.Id.ToString("X3") + @msg.Meaning@msg.Length + @BitConverter.ToString( + msg.Data.Take(msg.Length).ToArray()) + + @msg.ValueText +
+
+ + + +
+
+ +@code { + // DATA STORAGE (1 ID = 1 ROW) + private Dictionary messages = new(); + + private bool isRunning = false; + private string status = "STOPPED"; + + // INIT + protected override void OnInitialized() + { + CanService.OnMessageReceived += OnCanMessage; + } + + // RECEIVE CAN FRAME + private void OnCanMessage(CanMessage msg) + { + InvokeAsync(() => + { + // 🔴 Update data on the SAME row by CAN-ID + messages[msg.Id] = msg; + + StateHasChanged(); + }); + } + + // START + private async Task Start() + { + if (isRunning) return; + + status = "INITIALIZING..."; + StateHasChanged(); + + await CanService.InitAsync(); // BẮT BUỘC + CanService.StartStream(); + + isRunning = true; + status = "RUNNING"; + } + + // STOP + private void Stop() + { + if (!isRunning) return; + + CanService.StopStream(); + isRunning = false; + status = "STOPPED"; + } + + // CLEANUP + public void Dispose() + { + CanService.OnMessageReceived -= OnCanMessage; + CanService.StopStream(); + } +} diff --git a/BlazorApp/Components/Pages/Counter.razor b/BlazorApp/Components/Pages/Counter.razor new file mode 100644 index 0000000..ef23cb3 --- /dev/null +++ b/BlazorApp/Components/Pages/Counter.razor @@ -0,0 +1,18 @@ +@page "/counter" + +Counter + +

Counter

+ +

Current count: @currentCount

+ + + +@code { + private int currentCount = 0; + + private void IncrementCount() + { + currentCount++; + } +} diff --git a/BlazorApp/Components/Pages/Error.razor b/BlazorApp/Components/Pages/Error.razor new file mode 100644 index 0000000..576cc2d --- /dev/null +++ b/BlazorApp/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/BlazorApp/Components/Pages/Home.razor b/BlazorApp/Components/Pages/Home.razor new file mode 100644 index 0000000..9001e0b --- /dev/null +++ b/BlazorApp/Components/Pages/Home.razor @@ -0,0 +1,7 @@ +@page "/" + +Home + +

Hello, world!

+ +Welcome to your new app. diff --git a/BlazorApp/Components/Pages/NotFound.razor b/BlazorApp/Components/Pages/NotFound.razor new file mode 100644 index 0000000..917ada1 --- /dev/null +++ b/BlazorApp/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/BlazorApp/Components/Pages/Weather.razor b/BlazorApp/Components/Pages/Weather.razor new file mode 100644 index 0000000..2a2a6cf --- /dev/null +++ b/BlazorApp/Components/Pages/Weather.razor @@ -0,0 +1,63 @@ +@page "/weather" + +Weather + +

Weather

+ +

This component demonstrates showing data.

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

Loading...

+} +else +{ + + + + + + + + + + + @foreach (var forecast in forecasts) + { + + + + + + + } + +
DateTemp. (C)Temp. (F)Summary
@forecast.Date.ToShortDateString()@forecast.TemperatureC@forecast.TemperatureF@forecast.Summary
+} + +@code { + private WeatherForecast[]? forecasts; + + protected override async Task OnInitializedAsync() + { + // Simulate asynchronous loading to demonstrate a loading indicator + await Task.Delay(500); + + var startDate = DateOnly.FromDateTime(DateTime.Now); + var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" }; + forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = startDate.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = summaries[Random.Shared.Next(summaries.Length)] + }).ToArray(); + } + + 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/BlazorApp/Components/Routes.razor b/BlazorApp/Components/Routes.razor new file mode 100644 index 0000000..105855d --- /dev/null +++ b/BlazorApp/Components/Routes.razor @@ -0,0 +1,6 @@ + + + + + + diff --git a/BlazorApp/Components/_Imports.razor b/BlazorApp/Components/_Imports.razor new file mode 100644 index 0000000..e049248 --- /dev/null +++ b/BlazorApp/Components/_Imports.razor @@ -0,0 +1,15 @@ +@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 +@using BlazorApp.Models +@using BlazorApp.Services +@using BlazorApp.Services.Interfaces +@using BlazorApp.Services.Windows \ No newline at end of file diff --git a/BlazorApp/Models/CanMessage.cs b/BlazorApp/Models/CanMessage.cs new file mode 100644 index 0000000..9c6eae8 --- /dev/null +++ b/BlazorApp/Models/CanMessage.cs @@ -0,0 +1,15 @@ +namespace BlazorApp.Models +{ + public class CanMessage + { + public uint Id { get; set; } + public byte Length { get; set; } + public byte[] Data { get; set; } = new byte[8]; + public DateTime Timestamp { get; set; } + + // ===== CANopen Info ===== + public string Meaning => CanopenDecoder.GetMeaning(Id); + public string ValueText => CanopenDecoder.GetValue(Id, Data, Length); + } +} + diff --git a/BlazorApp/Models/Canopen/CanopenDeviceRegistry.cs b/BlazorApp/Models/Canopen/CanopenDeviceRegistry.cs new file mode 100644 index 0000000..b229841 --- /dev/null +++ b/BlazorApp/Models/Canopen/CanopenDeviceRegistry.cs @@ -0,0 +1,50 @@ +using BlazorApp.Models.Canopen.Eds; +namespace BlazorApp.Models.Canopen +{ + public static class CanopenDeviceRegistry + { + private static readonly Dictionary _decoders + = new(); + + static CanopenDeviceRegistry() + { + // 🔹 Ví dụ cấu hình từ EDS + var encoderEds = new EdsDevice + { + NodeId = 5, + DeviceName = "Encoder GXMMW", + Tpdos = + { + [1] = new EdsTpdo + { + PdoIndex = 1, + Objects = + { + new EdsObject + { + Index = 0x6004, + Name = "Position", + BitOffset = 0, + BitLength = 32, + Factor = 0.094, + Unit = "mm" + } + } + } + } + }; + + Register(new EdsDeviceDecoder(encoderEds)); + } + + public static void Register(ICanopenDeviceDecoder decoder) + { + _decoders[decoder.NodeId] = decoder; + } + public static ICanopenDeviceDecoder? GetDecoder(int nodeId) + { + return _decoders.TryGetValue(nodeId, out var d) ? d : null; + } + + } +} diff --git a/BlazorApp/Models/Canopen/Eds/EdsDevice.cs b/BlazorApp/Models/Canopen/Eds/EdsDevice.cs new file mode 100644 index 0000000..d601d57 --- /dev/null +++ b/BlazorApp/Models/Canopen/Eds/EdsDevice.cs @@ -0,0 +1,10 @@ +namespace BlazorApp.Models.Canopen.Eds +{ + public class EdsDevice + { + public int NodeId { get; set; } + public string DeviceName { get; set; } = ""; + + public Dictionary Tpdos { get; set; } = new(); + } +} diff --git a/BlazorApp/Models/Canopen/Eds/EdsDeviceDecoder.cs b/BlazorApp/Models/Canopen/Eds/EdsDeviceDecoder.cs new file mode 100644 index 0000000..ff35c72 --- /dev/null +++ b/BlazorApp/Models/Canopen/Eds/EdsDeviceDecoder.cs @@ -0,0 +1,47 @@ +using BlazorApp.Models.Canopen; +using BlazorApp.Models.Canopen.Eds; +namespace BlazorApp.Models.Canopen.Eds +{ + public class EdsDeviceDecoder : ICanopenDeviceDecoder + { + private readonly EdsDevice _device; + + public int NodeId => _device.NodeId; + + public EdsDeviceDecoder(EdsDevice device) + { + _device = device; + } + + public string DecodeTpdo(int pdoIndex, byte[] data, byte length) + { + if (!_device.Tpdos.TryGetValue(pdoIndex, out var tpdo)) + return "-"; + + var results = new List(); + + foreach (var obj in tpdo.Objects) + { + ulong raw = ReadBits(data, obj.BitOffset, obj.BitLength); + double value = raw * obj.Factor; + + results.Add($"{obj.Name}: {value:F2} {obj.Unit}"); + } + + return string.Join(" | ", results); + } + + private static ulong ReadBits(byte[] data, int bitOffset, int bitLength) + { + ulong value = 0; + int byteOffset = bitOffset / 8; + + for (int i = 0; i < bitLength / 8; i++) + { + value |= (ulong)data[byteOffset + i] << (8 * i); + } + + return value; + } + } +} diff --git a/BlazorApp/Models/Canopen/Eds/EdsObject.cs b/BlazorApp/Models/Canopen/Eds/EdsObject.cs new file mode 100644 index 0000000..92d2007 --- /dev/null +++ b/BlazorApp/Models/Canopen/Eds/EdsObject.cs @@ -0,0 +1,13 @@ +namespace BlazorApp.Models.Canopen.Eds +{ + public class EdsObject + { + public ushort Index { get; set; } + public byte SubIndex { get; set; } + public string Name { get; set; } = ""; + public double Factor { get; set; } = 1.0; + public string Unit { get; set; } = ""; + public int BitOffset { get; set; } + public int BitLength { get; set; } + } +} diff --git a/BlazorApp/Models/Canopen/Eds/EdsTpdo.cs b/BlazorApp/Models/Canopen/Eds/EdsTpdo.cs new file mode 100644 index 0000000..6e59314 --- /dev/null +++ b/BlazorApp/Models/Canopen/Eds/EdsTpdo.cs @@ -0,0 +1,8 @@ +namespace BlazorApp.Models.Canopen.Eds +{ + public class EdsTpdo + { + public int PdoIndex { get; set; } + public List Objects { get; set; } = new(); + } +} diff --git a/BlazorApp/Models/Canopen/ICanopenDeviceDecoder.cs b/BlazorApp/Models/Canopen/ICanopenDeviceDecoder.cs new file mode 100644 index 0000000..d8580a0 --- /dev/null +++ b/BlazorApp/Models/Canopen/ICanopenDeviceDecoder.cs @@ -0,0 +1,10 @@ +using BlazorApp.Models; +namespace BlazorApp.Models.Canopen +{ + public interface ICanopenDeviceDecoder + { + int NodeId { get; } + + string DecodeTpdo(int pdoIndex, byte[] data, byte length); + } +} diff --git a/BlazorApp/Models/CanopenDecoder.cs b/BlazorApp/Models/CanopenDecoder.cs new file mode 100644 index 0000000..606577f --- /dev/null +++ b/BlazorApp/Models/CanopenDecoder.cs @@ -0,0 +1,56 @@ +using BlazorApp.Models.Canopen; +namespace BlazorApp.Models +{ + public class CanopenDecoder + { + public static string GetMeaning(uint id) + { + if (id == 0x080) return "SYNC"; + + if (id >= 0x081 && id <= 0x0FF) + return $"EMCY (Node {id - 0x080})"; + + if (id >= 0x700 && id <= 0x77F) + return $"Heartbeat (Node {id - 0x700})"; + + if (id >= 0x180 && id <= 0x4FF) + { + int pdoIndex = (int)((id - 0x180) / 0x100) + 1; + int nodeId = (int)(id - (0x180 + (pdoIndex - 1) * 0x100)); + return $"TPDO{pdoIndex} (Node {nodeId})"; + } + + return "Unknown"; + } + + public static string GetValue(uint id, byte[] data, byte length) + { + if (id >= 0x180 && id <= 0x4FF) + { + int pdoIndex = (int)((id - 0x180) / 0x100) + 1; + int nodeId = (int)(id - (0x180 + (pdoIndex - 1) * 0x100)); + + var decoder = CanopenDeviceRegistry.GetDecoder(nodeId); + if (decoder != null) + return decoder.DecodeTpdo(pdoIndex, data, length); + } + + if (id >= 0x700 && id <= 0x77F && length >= 1) + return DecodeNmtState(data[0]); + + return "No Error"; + } + + private static string DecodeNmtState(byte value) + { + return value switch + { + 0x00 => "Boot-up", + 0x04 => "Stopped", + 0x05 => "Operational", + 0x7F => "Pre-operational", + _ => $"Unknown (0x{value:X2})" + }; + } + } +} diff --git a/BlazorApp/Program.cs b/BlazorApp/Program.cs new file mode 100644 index 0000000..fb753bc --- /dev/null +++ b/BlazorApp/Program.cs @@ -0,0 +1,33 @@ +using BlazorApp.Components; +using BlazorApp.Services.Interfaces; +using BlazorApp.Services.Windows; + +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +if (OperatingSystem.IsWindows()) +{ + builder.Services.AddSingleton(); +} +builder.Services.AddRazorComponents() + .AddInteractiveServerComponents(); + +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/BlazorApp/Properties/PublishProfiles/FolderProfile.pubxml b/BlazorApp/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..798d442 --- /dev/null +++ b/BlazorApp/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,20 @@ + + + + + false + false + true + Release + Any CPU + FileSystem + D:\CanRead\BlazorApp\publish\ + FileSystem + <_TargetId>Folder + + net10.0 + linux-x64 + d120649d-2906-09dd-7896-0626a755fff4 + false + + \ No newline at end of file diff --git a/BlazorApp/Properties/PublishProfiles/FolderProfile.pubxml.user b/BlazorApp/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..89e5aa7 --- /dev/null +++ b/BlazorApp/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,9 @@ + + + + + <_PublishTargetUrl>D:\CanRead\BlazorApp\publish\ + True|2026-01-14T02:29:51.0511608Z||;True|2026-01-13T14:26:13.6767019+07:00||;True|2026-01-13T09:37:31.0751103+07:00||; + + + \ No newline at end of file diff --git a/BlazorApp/Properties/launchSettings.json b/BlazorApp/Properties/launchSettings.json new file mode 100644 index 0000000..5f2fc4e --- /dev/null +++ b/BlazorApp/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:5119", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7122;http://localhost:5119", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } + } diff --git a/BlazorApp/Services/Interfaces/ICanService.cs b/BlazorApp/Services/Interfaces/ICanService.cs new file mode 100644 index 0000000..7ec0878 --- /dev/null +++ b/BlazorApp/Services/Interfaces/ICanService.cs @@ -0,0 +1,15 @@ +using BlazorApp.Models; + +namespace BlazorApp.Services.Interfaces +{ + public interface ICanService + { + Task InitAsync(); + Task> ReadAsync(); + + // STREAM + event Action? OnMessageReceived; + void StartStream(); + void StopStream(); + } +} diff --git a/BlazorApp/Services/Windows/PcanCanService.cs b/BlazorApp/Services/Windows/PcanCanService.cs new file mode 100644 index 0000000..4f03dd7 --- /dev/null +++ b/BlazorApp/Services/Windows/PcanCanService.cs @@ -0,0 +1,94 @@ +using BlazorApp.Models; +using BlazorApp.Services.Interfaces; +using Peak.Can.Basic.BackwardCompatibility; + +namespace BlazorApp.Services.Windows +{ + public class PcanCanService : ICanService, IDisposable + { + private const ushort PCAN_USBBUS1 = 0x51; + private CancellationTokenSource? _cts; + private bool _initialized; + public event Action? OnMessageReceived; + + public Task InitAsync() + { + if (_initialized) return Task.CompletedTask; + + var status = PCANBasic.Initialize( + PCAN_USBBUS1, + TPCANBaudrate.PCAN_BAUD_250K + ); + + if (status != TPCANStatus.PCAN_ERROR_OK) + throw new Exception($"PCAN init failed: {status}"); + + _initialized = true; + return Task.CompletedTask; + } + + public Task> ReadAsync() + { + var list = new List(); + TPCANMsg msg; + TPCANTimestamp ts; + + if (PCANBasic.Read(PCAN_USBBUS1, out msg, out ts) + == TPCANStatus.PCAN_ERROR_OK) + { + list.Add(Map(msg)); + } + + return Task.FromResult(list); + } + + public void StartStream() + { + if (_cts != null) return; + + _cts = new CancellationTokenSource(); + + Task.Run(() => + { + while (!_cts.IsCancellationRequested) + { + TPCANMsg msg; + TPCANTimestamp ts; + + var result = PCANBasic.Read( + PCAN_USBBUS1, + out msg, + out ts + ); + + if (result == TPCANStatus.PCAN_ERROR_OK) + OnMessageReceived?.Invoke(Map(msg)); + else + Thread.Sleep(1); + } + }); + } + + public void StopStream() + { + _cts?.Cancel(); + _cts = null; + + if (_initialized) + { + PCANBasic.Uninitialize(PCAN_USBBUS1); + _initialized = false; + } + } + + private static CanMessage Map(TPCANMsg msg) => new() + { + Id = msg.ID, + Length = msg.LEN, + Data = msg.DATA, + Timestamp = DateTime.Now + }; + + public void Dispose() => StopStream(); + } +} diff --git a/BlazorApp/appsettings.Development.json b/BlazorApp/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/BlazorApp/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/BlazorApp/appsettings.json b/BlazorApp/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/BlazorApp/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/BlazorApp/bin/Debug/net10.0/BlazorApp.deps.json b/BlazorApp/bin/Debug/net10.0/BlazorApp.deps.json new file mode 100644 index 0000000..3b97c58 --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/BlazorApp.deps.json @@ -0,0 +1,57 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "BlazorApp/1.0.0": { + "dependencies": { + "Peak.PCANBasic.NET": "4.10.1.968", + "SocketCANSharp": "0.13.0" + }, + "runtime": { + "BlazorApp.dll": {} + } + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "runtime": { + "lib/netstandard2.0/PCANBasic.NET.dll": { + "assemblyVersion": "4.10.1.968", + "fileVersion": "4.10.1.968" + } + } + }, + "SocketCANSharp/0.13.0": { + "runtime": { + "lib/netstandard2.0/SocketCANSharp.dll": { + "assemblyVersion": "0.13.0.0", + "fileVersion": "0.13.0.0" + } + } + } + } + }, + "libraries": { + "BlazorApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUxW8dhaIB+x7XFcpepad1DaD1N5a9l6qB2cyOgDCv7M+SmF87hOIK/EsT42Th92exA02PfCr6+ilnZ0XYeyrg==", + "path": "peak.pcanbasic.net/4.10.1.968", + "hashPath": "peak.pcanbasic.net.4.10.1.968.nupkg.sha512" + }, + "SocketCANSharp/0.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-71mLS40IMpnyWeKf0zeWKGlgO6lkll36DdhKmsJ9z/SGnENcq/8XhOYFgLKJ8Wbs2a4WaFelmlz8cKBU82lWyA==", + "path": "socketcansharp/0.13.0", + "hashPath": "socketcansharp.0.13.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/BlazorApp/bin/Debug/net10.0/BlazorApp.dll b/BlazorApp/bin/Debug/net10.0/BlazorApp.dll new file mode 100644 index 0000000..011826a Binary files /dev/null and b/BlazorApp/bin/Debug/net10.0/BlazorApp.dll differ diff --git a/BlazorApp/bin/Debug/net10.0/BlazorApp.exe b/BlazorApp/bin/Debug/net10.0/BlazorApp.exe new file mode 100644 index 0000000..2e95150 Binary files /dev/null and b/BlazorApp/bin/Debug/net10.0/BlazorApp.exe differ diff --git a/BlazorApp/bin/Debug/net10.0/BlazorApp.pdb b/BlazorApp/bin/Debug/net10.0/BlazorApp.pdb new file mode 100644 index 0000000..1cf2d28 Binary files /dev/null and b/BlazorApp/bin/Debug/net10.0/BlazorApp.pdb differ diff --git a/BlazorApp/bin/Debug/net10.0/BlazorApp.runtimeconfig.json b/BlazorApp/bin/Debug/net10.0/BlazorApp.runtimeconfig.json new file mode 100644 index 0000000..8b09022 --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/BlazorApp.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/BlazorApp/bin/Debug/net10.0/BlazorApp.staticwebassets.endpoints.json b/BlazorApp/bin/Debug/net10.0/BlazorApp.staticwebassets.endpoints.json new file mode 100644 index 0000000..e08e31e --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/BlazorApp.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="},{"Name":"label","Value":"BlazorApp.styles.css.gz"}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="}]},{"Route":"BlazorApp.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="}]},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="}]},{"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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"}]},{"Route":"app.ag9i8ft9fn.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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="}]},{"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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/BlazorApp/bin/Debug/net10.0/BlazorApp.staticwebassets.runtime.json b/BlazorApp/bin/Debug/net10.0/BlazorApp.staticwebassets.runtime.json new file mode 100644 index 0000000..6e6597c --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/BlazorApp.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\","D:\\CanRead\\BlazorApp\\BlazorApp\\"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz"},"Patterns":null},"BlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"BlazorApp.styles.css"},"Patterns":null},"BlazorApp.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz"},"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gh25061luz-{0}-493y06b0oq-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"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/BlazorApp/bin/Debug/net10.0/PCANBasic.NET.dll b/BlazorApp/bin/Debug/net10.0/PCANBasic.NET.dll new file mode 100644 index 0000000..c4731b8 Binary files /dev/null and b/BlazorApp/bin/Debug/net10.0/PCANBasic.NET.dll differ diff --git a/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.deps.json b/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.deps.json new file mode 100644 index 0000000..3b97c58 --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.deps.json @@ -0,0 +1,57 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "BlazorApp/1.0.0": { + "dependencies": { + "Peak.PCANBasic.NET": "4.10.1.968", + "SocketCANSharp": "0.13.0" + }, + "runtime": { + "BlazorApp.dll": {} + } + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "runtime": { + "lib/netstandard2.0/PCANBasic.NET.dll": { + "assemblyVersion": "4.10.1.968", + "fileVersion": "4.10.1.968" + } + } + }, + "SocketCANSharp/0.13.0": { + "runtime": { + "lib/netstandard2.0/SocketCANSharp.dll": { + "assemblyVersion": "0.13.0.0", + "fileVersion": "0.13.0.0" + } + } + } + } + }, + "libraries": { + "BlazorApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUxW8dhaIB+x7XFcpepad1DaD1N5a9l6qB2cyOgDCv7M+SmF87hOIK/EsT42Th92exA02PfCr6+ilnZ0XYeyrg==", + "path": "peak.pcanbasic.net/4.10.1.968", + "hashPath": "peak.pcanbasic.net.4.10.1.968.nupkg.sha512" + }, + "SocketCANSharp/0.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-71mLS40IMpnyWeKf0zeWKGlgO6lkll36DdhKmsJ9z/SGnENcq/8XhOYFgLKJ8Wbs2a4WaFelmlz8cKBU82lWyA==", + "path": "socketcansharp/0.13.0", + "hashPath": "socketcansharp.0.13.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.runtimeconfig.json b/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.runtimeconfig.json new file mode 100644 index 0000000..91bec3c --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.runtimeconfig.json @@ -0,0 +1,21 @@ +{ + "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.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } +} \ No newline at end of file diff --git a/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.staticwebassets.endpoints.json b/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.staticwebassets.endpoints.json new file mode 100644 index 0000000..80b666a --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/Publish/BlazorApp.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Publish","Endpoints":[{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000468823254"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css.br","AssetFile":"BlazorApp.styles.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ="},{"Name":"label","Value":"BlazorApp.styles.css.br"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="},{"Name":"label","Value":"BlazorApp.styles.css.gz"}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000468823254"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="}]},{"Route":"BlazorApp.styles.css.br","AssetFile":"BlazorApp.styles.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ="}]},{"Route":"BlazorApp.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="}]},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 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","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.001801801802"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00: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":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.br","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.br"}]},{"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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 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","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.001801801802"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 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.br","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc="}]},{"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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"_framework/blazor.server.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000025951782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js.br","AssetFile":"_framework/blazor.server.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A="},{"Name":"label","Value":"_framework/blazor.server.js.br"}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000025951782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.js.br","AssetFile":"_framework/blazor.server.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A="}]},{"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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="}]},{"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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021031379"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.js.br","AssetFile":"_framework/blazor.web.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo="}]},{"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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"_framework/blazor.web.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021031379"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js.br","AssetFile":"_framework/blazor.web.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo="},{"Name":"label","Value":"_framework/blazor.web.js.br"}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000723589001"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"}]},{"Route":"app.ag9i8ft9fn.css.br","AssetFile":"app.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk="},{"Name":"label","Value":"app.css.br"}]},{"Route":"app.ag9i8ft9fn.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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.css","AssetFile":"app.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000723589001"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="}]},{"Route":"app.css.br","AssetFile":"app.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk="}]},{"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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000273597811"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000273597811"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042911088"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042911088"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000354735722"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000114757861"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000114757861"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000354735722"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000287356322"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042709490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042709490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000287356322"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000362844702"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000113843352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000113843352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000362844702"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349283968"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046864748"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046864748"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000361925443"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000361925443"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000092481273"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000092481273"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046844990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046844990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000359066427"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000091499680"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000091499680"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000359066427"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349283968"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128386186"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031925422"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031925422"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128386186"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142186833"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057683433"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057683433"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142186833"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128816179"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031985670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031985670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142348754"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142348754"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057806810"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057806810"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128816179"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000040806333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011909724"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011909724"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000044033465"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000044033465"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014509997"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014509997"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041022275"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041022275"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011906746"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011906746"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000043894303"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014460480"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014460480"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000043894303"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000040806333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000027580120"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000027580120"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013245209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013245209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000047234424"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000047234424"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013771070"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013771070"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042172740"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018929714"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018929714"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000061538462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000061538462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000020944163"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000020944163"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042172740"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041342815"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018857251"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018857251"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000067444527"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000067444527"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021258955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021258955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041342815"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/BlazorApp/bin/Debug/net10.0/Publish/appsettings.Development.json b/BlazorApp/bin/Debug/net10.0/Publish/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/Publish/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/BlazorApp/bin/Debug/net10.0/Publish/appsettings.json b/BlazorApp/bin/Debug/net10.0/Publish/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/Publish/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/BlazorApp/bin/Debug/net10.0/Publish/web.config b/BlazorApp/bin/Debug/net10.0/Publish/web.config new file mode 100644 index 0000000..c769635 --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/Publish/web.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/BlazorApp/bin/Debug/net10.0/SocketCANSharp.dll b/BlazorApp/bin/Debug/net10.0/SocketCANSharp.dll new file mode 100644 index 0000000..129a2b2 Binary files /dev/null and b/BlazorApp/bin/Debug/net10.0/SocketCANSharp.dll differ diff --git a/BlazorApp/bin/Debug/net10.0/appsettings.Development.json b/BlazorApp/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/BlazorApp/bin/Debug/net10.0/appsettings.json b/BlazorApp/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/BlazorApp/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json b/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..00bcf9b --- /dev/null +++ b/BlazorApp/obj/BlazorApp.csproj.nuget.dgspec.json @@ -0,0 +1,506 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\BlazorApp.csproj": {} + }, + "projects": { + "C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\BlazorApp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\BlazorApp.csproj", + "projectName": "BlazorApp", + "projectPath": "C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\BlazorApp.csproj", + "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "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.1, )", + "autoReferenced": true + }, + "Peak.PCANBasic.NET": { + "target": "Package", + "version": "[4.10.1.968, )" + }, + "SocketCANSharp": { + "target": "Package", + "version": "[0.13.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/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/BlazorApp/obj/BlazorApp.csproj.nuget.g.props b/BlazorApp/obj/BlazorApp.csproj.nuget.g.props new file mode 100644 index 0000000..6309972 --- /dev/null +++ b/BlazorApp/obj/BlazorApp.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Admin\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + + + + \ No newline at end of file diff --git a/BlazorApp/obj/BlazorApp.csproj.nuget.g.targets b/BlazorApp/obj/BlazorApp.csproj.nuget.g.targets new file mode 100644 index 0000000..fcb3065 --- /dev/null +++ b/BlazorApp/obj/BlazorApp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/BlazorApp/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/BlazorApp/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/BlazorApp/obj/Debug/net10.0/ApiEndpoints.json b/BlazorApp/obj/Debug/net10.0/ApiEndpoints.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/ApiEndpoints.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.AssemblyInfo.cs b/BlazorApp/obj/Debug/net10.0/BlazorApp.AssemblyInfo.cs new file mode 100644 index 0000000..3b347d0 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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+314a28bf8ff7028abdd8305908ee1062cbadf848")] +[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/BlazorApp/obj/Debug/net10.0/BlazorApp.AssemblyInfoInputs.cache b/BlazorApp/obj/Debug/net10.0/BlazorApp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7eacf47 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8b3c00ab1ba2f661a2f6812224109506d90ffd56f94a6bb600073091fa8f61a0 diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig b/BlazorApp/obj/Debug/net10.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1ee9e88 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,71 @@ +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 = BlazorApp +build_property.RootNamespace = BlazorApp +build_property.ProjectDir = C:\Users\Admin\source\repos\CanRead\BlazorApp\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\Admin\source\repos\CanRead\BlazorApp +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/App.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Can.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDYW4ucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Counter.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Error.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/NotFound.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xOb3RGb3VuZC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Weather.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Routes.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Layout/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-qgsvw684bo + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Layout/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-g8o6n169oq + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Layout/ReconnectModal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcUmVjb25uZWN0TW9kYWwucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-pphnjiao61 diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.GlobalUsings.g.cs b/BlazorApp/obj/Debug/net10.0/BlazorApp.GlobalUsings.g.cs new file mode 100644 index 0000000..69a3c68 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.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/BlazorApp/obj/Debug/net10.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cache b/BlazorApp/obj/Debug/net10.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.assets.cache b/BlazorApp/obj/Debug/net10.0/BlazorApp.assets.cache new file mode 100644 index 0000000..3ac074e Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/BlazorApp.assets.cache differ diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.AssemblyReference.cache b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fa38319 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.AssemblyReference.cache differ diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.BuildWithSkipAnalyzers b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.CoreCompileInputs.cache b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e5d704f --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +dcbb699325d1f189632edd97c075e7ab80e2dbfd360d3ed8a4839026314a16b0 diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.FileListAbsolute.txt b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c28f810 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.FileListAbsolute.txt @@ -0,0 +1,91 @@ +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\appsettings.Development.json +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\appsettings.json +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\BlazorApp.staticwebassets.runtime.json +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\BlazorApp.staticwebassets.endpoints.json +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\BlazorApp.exe +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\BlazorApp.deps.json +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\BlazorApp.runtimeconfig.json +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\BlazorApp.pdb +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\PCANBasic.NET.dll +D:\CanRead\BlazorApp\BlazorApp\bin\Debug\net10.0\SocketCANSharp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\EmbeddedAttribute.cs +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\ValidatableTypeAttribute.cs +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.csproj.AssemblyReference.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\rpswa.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.AssemblyInfoInputs.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.AssemblyInfo.cs +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.csproj.CoreCompileInputs.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\rjimswa.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\rjsmrazor.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\scopedcss\Components\Layout\MainLayout.razor.rz.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\scopedcss\Components\Layout\NavMenu.razor.rz.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\scopedcss\Components\Layout\ReconnectModal.razor.rz.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\scopedcss\bundle\BlazorApp.styles.css +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\staticwebassets.build.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\staticwebassets.build.json.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\staticwebassets.development.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\staticwebassets.build.endpoints.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\swae.build.ex.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.csproj.Up2Date +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\refint\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.pdb +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.genruntimeconfig.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\ref\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\compressed\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\BlazorApp.sourcelink.json +D:\CanRead\BlazorApp\BlazorApp\obj\Debug\net10.0\staticwebassets.upToDateCheck.txt diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.Up2Date b/BlazorApp/obj/Debug/net10.0/BlazorApp.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.dll b/BlazorApp/obj/Debug/net10.0/BlazorApp.dll new file mode 100644 index 0000000..011826a Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/BlazorApp.dll differ diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.genruntimeconfig.cache b/BlazorApp/obj/Debug/net10.0/BlazorApp.genruntimeconfig.cache new file mode 100644 index 0000000..7266ae2 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.genruntimeconfig.cache @@ -0,0 +1 @@ +23bd4f7a70c83ce2f9a3ca44dc14b3ee4f327b3cb9f8b52a1d346110324da545 diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.pdb b/BlazorApp/obj/Debug/net10.0/BlazorApp.pdb new file mode 100644 index 0000000..1cf2d28 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/BlazorApp.pdb differ diff --git a/BlazorApp/obj/Debug/net10.0/BlazorApp.sourcelink.json b/BlazorApp/obj/Debug/net10.0/BlazorApp.sourcelink.json new file mode 100644 index 0000000..f8139ad --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/BlazorApp.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"D:\\CanRead\\BlazorApp\\*":"https://raw.githubusercontent.com/DTQuan1212/BlazorApp/96751a2cf1944c4425809e0d870e8df75a4252da/*"}} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/EmbeddedAttribute.cs b/BlazorApp/obj/Debug/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/BlazorApp/obj/Debug/net10.0/ValidatableTypeAttribute.cs b/BlazorApp/obj/Debug/net10.0/ValidatableTypeAttribute.cs new file mode 100644 index 0000000..26eb880 --- /dev/null +++ b/BlazorApp/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/BlazorApp/obj/Debug/net10.0/apphost.exe b/BlazorApp/obj/Debug/net10.0/apphost.exe new file mode 100644 index 0000000..2e95150 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/apphost.exe differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz b/BlazorApp/obj/Debug/net10.0/compressed/03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz new file mode 100644 index 0000000..07ee581 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz b/BlazorApp/obj/Debug/net10.0/compressed/0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz new file mode 100644 index 0000000..30ca7f2 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz b/BlazorApp/obj/Debug/net10.0/compressed/08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz new file mode 100644 index 0000000..10e05a7 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz b/BlazorApp/obj/Debug/net10.0/compressed/0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz new file mode 100644 index 0000000..7b439b3 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz b/BlazorApp/obj/Debug/net10.0/compressed/1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz new file mode 100644 index 0000000..560c851 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz b/BlazorApp/obj/Debug/net10.0/compressed/3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz new file mode 100644 index 0000000..0d3d3dc Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz b/BlazorApp/obj/Debug/net10.0/compressed/5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz new file mode 100644 index 0000000..a22d758 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz b/BlazorApp/obj/Debug/net10.0/compressed/5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz new file mode 100644 index 0000000..2301c57 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz b/BlazorApp/obj/Debug/net10.0/compressed/65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz new file mode 100644 index 0000000..058a2ba Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz b/BlazorApp/obj/Debug/net10.0/compressed/72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz new file mode 100644 index 0000000..ac6545f Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz b/BlazorApp/obj/Debug/net10.0/compressed/7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz new file mode 100644 index 0000000..02743b4 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz b/BlazorApp/obj/Debug/net10.0/compressed/8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz new file mode 100644 index 0000000..02e1fed Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz b/BlazorApp/obj/Debug/net10.0/compressed/8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz new file mode 100644 index 0000000..5707000 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz b/BlazorApp/obj/Debug/net10.0/compressed/9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz new file mode 100644 index 0000000..d21cc35 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz b/BlazorApp/obj/Debug/net10.0/compressed/byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz new file mode 100644 index 0000000..c7cc30b Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz b/BlazorApp/obj/Debug/net10.0/compressed/dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz new file mode 100644 index 0000000..1c8632e Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz b/BlazorApp/obj/Debug/net10.0/compressed/e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz new file mode 100644 index 0000000..b78e9a6 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz b/BlazorApp/obj/Debug/net10.0/compressed/e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz new file mode 100644 index 0000000..a42d2e2 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/gh25061luz-{0}-493y06b0oq-493y06b0oq.gz b/BlazorApp/obj/Debug/net10.0/compressed/gh25061luz-{0}-493y06b0oq-493y06b0oq.gz new file mode 100644 index 0000000..4d13341 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/gh25061luz-{0}-493y06b0oq-493y06b0oq.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz b/BlazorApp/obj/Debug/net10.0/compressed/h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz new file mode 100644 index 0000000..5ebaa46 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz b/BlazorApp/obj/Debug/net10.0/compressed/hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz new file mode 100644 index 0000000..03500f4 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz b/BlazorApp/obj/Debug/net10.0/compressed/hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz new file mode 100644 index 0000000..df190af Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz b/BlazorApp/obj/Debug/net10.0/compressed/hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz new file mode 100644 index 0000000..3f76529 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz b/BlazorApp/obj/Debug/net10.0/compressed/i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz new file mode 100644 index 0000000..5820041 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz b/BlazorApp/obj/Debug/net10.0/compressed/jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz new file mode 100644 index 0000000..1c9c87f Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz b/BlazorApp/obj/Debug/net10.0/compressed/jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz new file mode 100644 index 0000000..4584efc Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz b/BlazorApp/obj/Debug/net10.0/compressed/k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz new file mode 100644 index 0000000..9b05c91 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz b/BlazorApp/obj/Debug/net10.0/compressed/kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz new file mode 100644 index 0000000..43cfabf Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz b/BlazorApp/obj/Debug/net10.0/compressed/kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz new file mode 100644 index 0000000..e200f36 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz b/BlazorApp/obj/Debug/net10.0/compressed/l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz new file mode 100644 index 0000000..affc1d6 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz b/BlazorApp/obj/Debug/net10.0/compressed/lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz new file mode 100644 index 0000000..4776422 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz b/BlazorApp/obj/Debug/net10.0/compressed/loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz new file mode 100644 index 0000000..3e027ed Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz b/BlazorApp/obj/Debug/net10.0/compressed/lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz new file mode 100644 index 0000000..fb1e112 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz b/BlazorApp/obj/Debug/net10.0/compressed/m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz new file mode 100644 index 0000000..2ec3ac0 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz b/BlazorApp/obj/Debug/net10.0/compressed/mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz new file mode 100644 index 0000000..70b2851 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz b/BlazorApp/obj/Debug/net10.0/compressed/n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz new file mode 100644 index 0000000..7422b31 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz b/BlazorApp/obj/Debug/net10.0/compressed/o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz new file mode 100644 index 0000000..9f26cb0 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz b/BlazorApp/obj/Debug/net10.0/compressed/oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz new file mode 100644 index 0000000..536cd1b Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz b/BlazorApp/obj/Debug/net10.0/compressed/onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz new file mode 100644 index 0000000..645e37f Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz b/BlazorApp/obj/Debug/net10.0/compressed/p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz new file mode 100644 index 0000000..4cc0b2e Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz b/BlazorApp/obj/Debug/net10.0/compressed/pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz new file mode 100644 index 0000000..46ff17a Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz b/BlazorApp/obj/Debug/net10.0/compressed/rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz new file mode 100644 index 0000000..f9e03b8 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz b/BlazorApp/obj/Debug/net10.0/compressed/rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz new file mode 100644 index 0000000..5707000 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz b/BlazorApp/obj/Debug/net10.0/compressed/sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz new file mode 100644 index 0000000..d3a6a88 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz b/BlazorApp/obj/Debug/net10.0/compressed/taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz new file mode 100644 index 0000000..466d8a6 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz b/BlazorApp/obj/Debug/net10.0/compressed/v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz new file mode 100644 index 0000000..d4ce0a8 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz b/BlazorApp/obj/Debug/net10.0/compressed/vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz new file mode 100644 index 0000000..ce9b6e9 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz b/BlazorApp/obj/Debug/net10.0/compressed/xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz new file mode 100644 index 0000000..05d954f Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz b/BlazorApp/obj/Debug/net10.0/compressed/xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz new file mode 100644 index 0000000..76aa913 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/compressed/zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz b/BlazorApp/obj/Debug/net10.0/compressed/zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz new file mode 100644 index 0000000..396a149 Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/compressed/zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz differ diff --git a/BlazorApp/obj/Debug/net10.0/rbcswa.dswa.cache.json b/BlazorApp/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..4ff6cc9 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["5TC00NPAAwNt14xRK9ixrsQ15vYkhOei1HJ2xlY8wG4=","GejC2CRknCXGyU6J/6N6y7P5B3otfrcjZrHeJg1TJKc=","Tc3iaXI\u002BmFWzWY\u002BbdeI79pdXTqMfGxSZlIvTKmQuNuY=","WstDZa6bQS8Jv6s/TI1OPtjsmck3L2QA/NL3I8AUzms=","0cH/F8H028PJKEDvB9o3iTIe3mbEfLgaqkqEZV5t894=","Xv9I/Bi6WcPJBjmeZWNmroyx8vAcrq9ydGzdgBqYZEA=","iolwzGD7TFb6fpskvxNZ5n\u002B/yPuieMXaYYphVUhfZbw=","3LHWVAbAWULBQR0vbOIezHkvp/OcT/Ue12v4SNtfges=","/Z3LY4lyIQBkKPgN\u002BcCsUizkGXIplIaBVgynoV5ptJY=","jrxN0T3KATN9\u002BCjmn/zjuyaFQFWzlXmiVzqPLRulTl0=","0TMaSGd7TQKL2sh6/jiKD8K8/yQim9dL7tCoKBSD/es=","xnqXCrMLOntdxfCm0SX6L\u002BZl\u002B8zDncM/5gh1bMcPeS0=","BoZzlXwPU6cKtbUEqd/bw8brboDlJo6qyZoBgCPdRlM=","mHf/2AJM2rAc0V\u002BofcO0/OO25728XimyPO0q8h3Gl9s=","0SuNCvOlJgE8ukoW37l\u002BJXavXyWUiTdv71wCZ3THq1E=","8BXot/80KNlZaPK7DS\u002BW0f8E9dyDZECBivEoPjgRzMQ=","TKS\u002BqIXG1tiZNWLfxWMMz15aWINU6QKzWOoc3FGTKfQ=","/A0tCK85JCNU\u002BeiDzUreVOChELobBzjliZF8MTATKxg=","PbWVpW2aLs3EFwWBVX272NDM72jfeP/EyRO6zRvpgYo=","82zLAHyWtWj6TqaWOEpXFMgQyyEjSrmc3fx8ipuYMfU=","NybAxqpmD8FH/fzrpRgVOHPXHc3rDChR9R8gW0NFv\u002B4=","xv4xODRTytIkBfssaDtaz4jNPVNX8sPJERWQYO69VZc=","w0wIUpG0qsbrppgsyrvEybSZmUZhPj/jtvg5LVp7oXw=","XkUuO7/rHcfSU\u002BTnY5RQXSFY0nB79N6gM/Fd/gqcYsM=","dcSZEusjY9fxk4vwf\u002BFiTdHEgv9Xafm4ygKlq5pj1yw=","VOZlsnygraLgj2cLR9My6iQSb/wef9iDUYGhnmbAJJU=","3bL/HbnHsqEWZvK73TUUdIvXmg4yuzIS/ojKELRz74c=","5burTyzQlD3r\u002BdrUQ8SfGGDoTj80IfpDQr8YePzdBvg=","cmiieOjAAGKDcQznIP7poYpA\u002BcHYaLad6XOJz708dHs=","LaZQf05nXgkYMht4nlWAsc8tL\u002B4axuQ3wHHKCtvFEYw=","UTGPtgWYxp5a7aykAPmYYg83M1CfL38R4m1kh6orXlU=","/I2Es/T/PFswBAxHOxbr8lzrHUL9b8AhlkBeOB6UEVY=","/ykovoLH\u002B7jqjFpZR\u002BVNwDM6srWpkemTQk4hMIfzUl0=","8MidhvZNrkWJSoLUlQRWcXXY7pJY\u002BdlGsFYpDX/r8Ak=","zrr1x2tt/P7xx2zG0lNfyBGXjP6L\u002B/n1QrLtyLaTZ2k=","Y5wNK2vBmUeUamVdFQiVIcR80A45wl\u002Bb5jHbP8dZ3L8=","dkAS0cqucaSZXPQlVJWt/gNHGXp27LERUZwiO\u002BggbKE=","yEM7aYXzHXN71\u002B\u002B3kQYq/cU2yY1lEdC\u002B/gtNd/2NSx0=","14DLedTcVX0O1nBAalTXCKk4/9ux2pUeTqMBjTiZiz8=","GQ60C8dMyj31XNS5D8OuKgWhhQJEL8FCVLT1R25Ai/A=","UkqdUImnZAHwscY06VDKRTYxjxGjZ1vM0Q6xelDccJI=","9SnvU9R2/c3HrMFzC/YZGFwSYwPoV41vVL8YmE9jdi4=","qybwUHt1PgBO9cnMMKQnLjfIqLci7I2b3j/u6JZyfII=","SzwV76v\u002Bqq7rAAp4RPjGwOwvNWQdm9DrsG\u002BAey70kLg=","MBDvTmAd7\u002B\u002BzQTMf7EQPSXBlwOzjcK4V4pZcmpj08No=","MTEgQMkaAffIt65pQABCDUIj7C1DcxgaP8M2ZsGHcTU=","wHsbTjV3N0JPGKq48TWuo\u002ByQx0bsqEyQhe2oKzOYYTU=","ZWJPnW8s6zkiF2Eh5irx13Qg9sXtXyL7NRkhtN6SenY=","JVdYE1\u002BAHZwznVxGQMFWPJQ365VD2mUubH\u002BINP99iHU=","YyXJPWAekE0XrkDP0skeBebCY5mQ1/\u002B/eYnq6bCZmn8="],"CachedAssets":{"MBDvTmAd7\u002B\u002BzQTMf7EQPSXBlwOzjcK4V4pZcmpj08No=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"app#[.{fingerprint=ag9i8ft9fn}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bh0qlye1dn","Integrity":"76Fg\u002BIKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\app.css","FileLength":1584,"LastWriteTime":"2026-01-09T08:08:27.6214432+00:00"},"5TC00NPAAwNt14xRK9ixrsQ15vYkhOei1HJ2xlY8wG4=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=bqjiyaj88i}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p1uwaguxw6","Integrity":"HQp0c6N8q5wOxo27/7\u002B5nSrp8SBfCepJdWIMB3pb5bE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":6915,"LastWriteTime":"2026-01-09T08:05:30.8518776+00:00"},"GejC2CRknCXGyU6J/6N6y7P5B3otfrcjZrHeJg1TJKc=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=c2jlpeoesf}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bpa5g0wlhg","Integrity":"keojCSbIk\u002BKcHuoejTbPFk8zgraA9s/7WmedJipnoMM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":33080,"LastWriteTime":"2026-01-09T08:05:30.8585964+00:00"},"Tc3iaXI\u002BmFWzWY\u002BbdeI79pdXTqMfGxSZlIvTKmQuNuY=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=erw9l3u2r3}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s32t06avo3","Integrity":"6OfodiC592J173EssQMUTEfylPvm7\u002B\u002B5l9PRY\u002B7T5Uo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":6102,"LastWriteTime":"2026-01-09T08:05:30.8635961+00:00"},"WstDZa6bQS8Jv6s/TI1OPtjsmck3L2QA/NL3I8AUzms=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=aexeepp0ev}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3latwtrz94","Integrity":"1/7f\u002BGraCXppQxdIoS5cuJ0z\u002Bsz2LI680XxYJg3fcdM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":14072,"LastWriteTime":"2026-01-09T08:05:30.8535903+00:00"},"0cH/F8H028PJKEDvB9o3iTIe3mbEfLgaqkqEZV5t894=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=d7shbmvgxk}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"316ql842l5","Integrity":"\u002BUkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":6918,"LastWriteTime":"2026-01-09T08:05:30.8555951+00:00"},"Xv9I/Bi6WcPJBjmeZWNmroyx8vAcrq9ydGzdgBqYZEA=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=ausgxo2sd3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lnst782kog","Integrity":"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL\u002BJelQZRo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":33061,"LastWriteTime":"2026-01-09T08:05:30.8635961+00:00"},"iolwzGD7TFb6fpskvxNZ5n\u002B/yPuieMXaYYphVUhfZbw=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=k8d9w2qqmf}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ykjynei6kc","Integrity":"Xll87KRp2km7kw\u002BkDSFiBiyUQnZ7QCVIb8yJtRDXckQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":6104,"LastWriteTime":"2026-01-09T08:05:30.8555951+00:00"},"3LHWVAbAWULBQR0vbOIezHkvp/OcT/Ue12v4SNtfges=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=cosvhxvwiu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f178oapzb7","Integrity":"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":14093,"LastWriteTime":"2026-01-09T08:05:30.8535903+00:00"},"/Z3LY4lyIQBkKPgN\u002BcCsUizkGXIplIaBVgynoV5ptJY=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=ub07r2b239}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"syqesifl59","Integrity":"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp\u002BAo\u002B6Xxnmug=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":3375,"LastWriteTime":"2026-01-09T08:05:30.8555951+00:00"},"jrxN0T3KATN9\u002BCjmn/zjuyaFQFWzlXmiVzqPLRulTl0=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=fvhpjtyr6v}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5b7ig2cj79","Integrity":"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":25714,"LastWriteTime":"2026-01-09T08:05:30.8625954+00:00"},"0TMaSGd7TQKL2sh6/jiKD8K8/yQim9dL7tCoKBSD/es=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=b7pk76d08c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5fx04t62wt","Integrity":"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":3199,"LastWriteTime":"2026-01-09T08:05:30.8555951+00:00"},"xnqXCrMLOntdxfCm0SX6L\u002BZl\u002B8zDncM/5gh1bMcPeS0=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=fsbi9cje9m}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggfb0v5ylw","Integrity":"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":12568,"LastWriteTime":"2026-01-09T08:05:30.8518776+00:00"},"BoZzlXwPU6cKtbUEqd/bw8brboDlJo6qyZoBgCPdRlM=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=rzd6atqjts}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vkbr9nomgm","Integrity":"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":3364,"LastWriteTime":"2026-01-09T08:05:30.8545962+00:00"},"mHf/2AJM2rAc0V\u002BofcO0/OO25728XimyPO0q8h3Gl9s=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=ee0r1s7dh0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kqk14ew2nl","Integrity":"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":25726,"LastWriteTime":"2026-01-09T08:05:30.8605963+00:00"},"0SuNCvOlJgE8ukoW37l\u002BJXavXyWUiTdv71wCZ3THq1E=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=dxx9fxp4il}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b8ltiz8u9h","Integrity":"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":3231,"LastWriteTime":"2026-01-09T08:05:30.8585964+00:00"},"8BXot/80KNlZaPK7DS\u002BW0f8E9dyDZECBivEoPjgRzMQ=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=jd9uben2k1}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ldvkm706vq","Integrity":"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ\u002BdoaPxfWM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":15028,"LastWriteTime":"2026-01-09T08:05:30.8745763+00:00"},"TKS\u002BqIXG1tiZNWLfxWMMz15aWINU6QKzWOoc3FGTKfQ=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=khv3u5hwcm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"g3lpifp44y","Integrity":"9EqjQR8ugEerwGk0t0elN3RQ\u002BXHT25kPo1\u002B/yYXwvNM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":12127,"LastWriteTime":"2026-01-09T08:05:30.8615947+00:00"},"/A0tCK85JCNU\u002BeiDzUreVOChELobBzjliZF8MTATKxg=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=r4e9w2rdcm}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"21g01g2f66","Integrity":"JhJG\u002BP11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":44266,"LastWriteTime":"2026-01-09T08:05:30.8755767+00:00"},"PbWVpW2aLs3EFwWBVX272NDM72jfeP/EyRO6zRvpgYo=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=lcd1t2u6c8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cy4j794sg8","Integrity":"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":11149,"LastWriteTime":"2026-01-09T08:05:30.8795762+00:00"},"82zLAHyWtWj6TqaWOEpXFMgQyyEjSrmc3fx8ipuYMfU=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=c2oey78nd0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oiolxl3gck","Integrity":"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":24487,"LastWriteTime":"2026-01-09T08:05:30.8615947+00:00"},"NybAxqpmD8FH/fzrpRgVOHPXHc3rDChR9R8gW0NFv\u002B4=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=tdbxkamptv}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"letd63iq5t","Integrity":"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":12069,"LastWriteTime":"2026-01-09T08:05:30.8661127+00:00"},"xv4xODRTytIkBfssaDtaz4jNPVNX8sPJERWQYO69VZc=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=j5mq2jizvt}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pnmw3mh9ht","Integrity":"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":44237,"LastWriteTime":"2026-01-09T08:05:30.8765759+00:00"},"w0wIUpG0qsbrppgsyrvEybSZmUZhPj/jtvg5LVp7oXw=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=06098lyss8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8ukjvmro89","Integrity":"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":11127,"LastWriteTime":"2026-01-09T08:05:30.8795762+00:00"},"XkUuO7/rHcfSU\u002BTnY5RQXSFY0nB79N6gM/Fd/gqcYsM=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=nvvlpmu67g}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0gru265j2n","Integrity":"cBDhSnwBZjhD\u002B2ai7wNkh\u002BCWcMrzxwfOe6IVNDuakD4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":24456,"LastWriteTime":"2026-01-09T08:05:30.8696211+00:00"},"dcSZEusjY9fxk4vwf\u002BFiTdHEgv9Xafm4ygKlq5pj1yw=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint=s35ty4nyc5}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dp6dicxiq4","Integrity":"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj\u002BIbLlaw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":33478,"LastWriteTime":"2026-01-09T08:05:30.8735761+00:00"},"VOZlsnygraLgj2cLR9My6iQSb/wef9iDUYGhnmbAJJU=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=pj5nd1wqec}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"glev5uv9kg","Integrity":"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE\u002BR/LeKU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":114902,"LastWriteTime":"2026-01-09T08:05:30.8940925+00:00"},"3bL/HbnHsqEWZvK73TUUdIvXmg4yuzIS/ojKELRz74c=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=46ein0sx1k}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uhnhmx07wd","Integrity":"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":31118,"LastWriteTime":"2026-01-09T08:05:30.900207+00:00"},"5burTyzQlD3r\u002BdrUQ8SfGGDoTj80IfpDQr8YePzdBvg=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=v0zj4ognzu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"77t5enldb7","Integrity":"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":91960,"LastWriteTime":"2026-01-09T08:05:30.8681126+00:00"},"cmiieOjAAGKDcQznIP7poYpA\u002BcHYaLad6XOJz708dHs=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=37tfw0ft22}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7kvveri0mt","Integrity":"h\u002BuVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":33366,"LastWriteTime":"2026-01-09T08:05:30.8720649+00:00"},"LaZQf05nXgkYMht4nlWAsc8tL\u002B4axuQ3wHHKCtvFEYw=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=hrwsygsryq}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p2knqut3gi","Integrity":"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":114877,"LastWriteTime":"2026-01-09T08:05:30.892088+00:00"},"UTGPtgWYxp5a7aykAPmYYg83M1CfL38R4m1kh6orXlU=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=pk9g2wxc8p}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3m4n8jcl3h","Integrity":"5VQx\u002BpcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":31137,"LastWriteTime":"2026-01-09T08:05:30.8725699+00:00"},"/I2Es/T/PFswBAxHOxbr8lzrHUL9b8AhlkBeOB6UEVY=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ft3s53vfgj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uom9ela1zq","Integrity":"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":91866,"LastWriteTime":"2026-01-09T08:05:30.8686163+00:00"},"/ykovoLH\u002B7jqjFpZR\u002BVNwDM6srWpkemTQk4hMIfzUl0=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=6cfz1n2cew}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zqu1wssclk","Integrity":"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz\u002BNhoo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":44461,"LastWriteTime":"2026-01-09T08:05:30.8735761+00:00"},"8MidhvZNrkWJSoLUlQRWcXXY7pJY\u002BdlGsFYpDX/r8Ak=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=6pdc2jztkx}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iwjfk8z8sl","Integrity":"fgl\u002BpethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":92277,"LastWriteTime":"2026-01-09T08:05:30.8950868+00:00"},"zrr1x2tt/P7xx2zG0lNfyBGXjP6L\u002B/n1QrLtyLaTZ2k=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=493y06b0oq}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"18qy0lzppu","Integrity":"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":23799,"LastWriteTime":"2026-01-09T08:05:30.8986002+00:00"},"Y5wNK2vBmUeUamVdFQiVIcR80A45wl\u002Bb5jHbP8dZ3L8=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=iovd86k7lj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4jjusqppj5","Integrity":"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":86518,"LastWriteTime":"2026-01-09T08:05:30.8651073+00:00"},"dkAS0cqucaSZXPQlVJWt/gNHGXp27LERUZwiO\u002BggbKE=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=vr1egmr9el}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9z27fl73l7","Integrity":"K\u002BJV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":28886,"LastWriteTime":"2026-01-09T08:05:30.8735761+00:00"},"yEM7aYXzHXN71\u002B\u002B3kQYq/cU2yY1lEdC\u002B/gtNd/2NSx0=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=kbrnm935zg}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6e2hoibiq5","Integrity":"oglZ6aWY/UXq\u002BQsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":64234,"LastWriteTime":"2026-01-09T08:05:30.8875757+00:00"},"14DLedTcVX0O1nBAalTXCKk4/9ux2pUeTqMBjTiZiz8=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=jj8uyg4cgr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6t36crcw3z","Integrity":"Ng/NTAPb2HvIa\u002B\u002BU\u002BTsQnZ6UYlXnzyFuh5Df7vHJZgU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":18542,"LastWriteTime":"2026-01-09T08:05:30.891087+00:00"},"GQ60C8dMyj31XNS5D8OuKgWhhQJEL8FCVLT1R25Ai/A=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=y7v9cxd14o}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"03mhy7u5rs","Integrity":"9Hc7N6ug4kO\u002BZAzS1pFxw7Hbp\u002BFZaCKMnDLRAv1J/zw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":56385,"LastWriteTime":"2026-01-09T08:05:30.8615947+00:00"},"UkqdUImnZAHwscY06VDKRTYxjxGjZ1vM0Q6xelDccJI=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint=notf2xhcfb}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"winy7sfnv8","Integrity":"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":29657,"LastWriteTime":"2026-01-09T08:05:30.8706208+00:00"},"9SnvU9R2/c3HrMFzC/YZGFwSYwPoV41vVL8YmE9jdi4=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=h1s4sie4z3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fizolni560","Integrity":"OeWySIbjCJXM4ZgVwiGmsjpLeFsT\u002BqOpONsDqh8xk5M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":64490,"LastWriteTime":"2026-01-09T08:05:30.8884178+00:00"},"qybwUHt1PgBO9cnMMKQnLjfIqLci7I2b3j/u6JZyfII=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=63fj8s7r0e}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lnp63td8x7","Integrity":"YQ6ZOC5\u002B9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":16571,"LastWriteTime":"2026-01-09T08:05:30.8706208+00:00"},"SzwV76v\u002Bqq7rAAp4RPjGwOwvNWQdm9DrsG\u002BAey70kLg=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=0j3bgjxly4}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s9vzkbm4vd","Integrity":"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":55524,"LastWriteTime":"2026-01-09T08:05:30.8585964+00:00"},"MTEgQMkaAffIt65pQABCDUIj7C1DcxgaP8M2ZsGHcTU=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\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":"D:\\CanRead\\BlazorApp\\BlazorApp\\Components\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7rrv2rl122","Integrity":"vUOSO6PRCY2\u002B9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\Components\\Layout\\ReconnectModal.razor.js","FileLength":722,"LastWriteTime":"2026-01-09T08:05:30.8595954+00:00"},"wHsbTjV3N0JPGKq48TWuo\u002ByQx0bsqEyQhe2oKzOYYTU=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=wmp8iwak4q}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sviimvbo08","Integrity":"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU\u002BIkM7bR54BbxI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.web.js","FileLength":55157,"LastWriteTime":"2026-01-09T08:05:30.8686163+00:00"},"ZWJPnW8s6zkiF2Eh5irx13Qg9sXtXyL7NRkhtN6SenY=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=2lgipwaf5j}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8iwy2ctnyf","Integrity":"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.server.js","FileLength":44315,"LastWriteTime":"2026-01-09T08:05:30.8755767+00:00"},"JVdYE1\u002BAHZwznVxGQMFWPJQ365VD2mUubH\u002BINP99iHU=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","SourceId":"BlazorApp","SourceType":"Computed","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"BlazorApp#[.{fingerprint=2mc2qwa0tf}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"axr7t46cgl","Integrity":"HrYQG\u002BkvC7F845\u002Bwxz4XV4/HlxiAXT/2yeNDykkRiMg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","FileLength":2488,"LastWriteTime":"2026-01-09T08:05:30.8503731+00:00"},"YyXJPWAekE0XrkDP0skeBebCY5mQ1/\u002B/eYnq6bCZmn8=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","SourceId":"BlazorApp","SourceType":"Computed","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"BlazorApp#[.{fingerprint=2mc2qwa0tf}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"axr7t46cgl","Integrity":"HrYQG\u002BkvC7F845\u002Bwxz4XV4/HlxiAXT/2yeNDykkRiMg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","FileLength":2488,"LastWriteTime":"2026-01-09T08:05:30.8518776+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/ref/BlazorApp.dll b/BlazorApp/obj/Debug/net10.0/ref/BlazorApp.dll new file mode 100644 index 0000000..6cf699f Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/ref/BlazorApp.dll differ diff --git a/BlazorApp/obj/Debug/net10.0/refint/BlazorApp.dll b/BlazorApp/obj/Debug/net10.0/refint/BlazorApp.dll new file mode 100644 index 0000000..6cf699f Binary files /dev/null and b/BlazorApp/obj/Debug/net10.0/refint/BlazorApp.dll differ diff --git a/BlazorApp/obj/Debug/net10.0/rjimswa.dswa.cache.json b/BlazorApp/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..937a3c9 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"aGmyiqlgSwH2nU00Lrvzg3w8HhCdlPfuBJhD6UzQR54=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["DyFwC9Z5JBcL6OCuLDCMAwY1cui5QBgSkYcpjnDk1x8=","80SfYYUedY51AvR5AMETe0quclmKzChxSX0\u002ByaLR4HU=","GCcEg0h\u002BFLFK3NoFh0Vz4sXbOQPbyepaZyzt4wstvIY=","tduo8ZQypEwfvNB8DEbABAj1eoNfWGq0B4g6nIwCEu8=","fo5lAkxLYWy75C5mcmi8L3TG8oQwhOlOrFexm1\u002BNJMs=","HbEspCDwgSaLuoWO0vwbb74QebU\u002BvNMfse/VeweNWiI=","iMUxh/86AkGDl4PJDF8cz1ESkj\u002BlOAlbDWGHmd2/Jf0=","Syqd9Iis6RBwwiID5GwspOPgBegNA1BbM4CI9ya2NDY=","NP9W7vlnqNd6RZm8XVK6w3a1YqB1bLdao7Pf0IKW\u002Bgw=","p8kM8u7Fvob4QAlp08HPQeEPVEevTrxmpf5zAd0RieY=","FOmOYz64jyOyHiyb3ftc5H5JscPoGpD/WJGRhjBctCY=","kOpqz9BHoGzSsy0RY2EyGr/ff9z0S\u002BEFJ6oMRwrwvzs=","JFRSqUVnSyGpfHIwgg9KTf4UVyGF0IGYYbgxGBSg\u002BEI=","7TRym6/lwbVYhmFes1eAD37K6L/C4veRiqAPfQRgc6g=","qkrhP7LYhCxQyDW0emDqilxWgalJet0b28sReHnwESU=","GGGoDxbDWpyp6WUmbhFFDJx05cCZHGG5KbROr2CqF\u002B0=","OMmDFYMeeHRafT0f0cyzTa6x3DUyxMyP\u002BtZ9mVsm5Cs=","G3AEtuFimJiHW9B2kRU0yBCG13ycas6JMw5sA5Mbvng=","3G\u002BMtOEiU/0ZUHSYUAVfyezNvye8Y8cj8jdhqAfYmtM=","w7lAqnWcgYIxAI6Q5mD2eHFzMvXQUExP2LtguzCs03U=","zj0nE2rBXBKWLjTbafz8M0Ckh03kBvAmbbh4qPysXtg=","/CxiRL2BOuXw65z2naRHGbbEhLFi2G1YbeVBJf93ETw=","Mto/iaRbSfLbJWcWOk6N8cv1q/ru8\u002BmdAZ/oAFcvro4=","sPltM/8NyHbn44z9NpC2y6I\u002BmEHk5SLQncM1I\u002B8V91s=","Htl2acPu9zOG3MTkZpsLb2VOT5qQpH0Q6QQvuHAOEoc=","L8ldDNhaNecUm57rT7u1Mq9ZzeV0nmooUb7O5SqIurA=","sizNXZ9mc9GwaP76TPyT0Z1uc1rhWjpl9S0MrO6eqjk=","30170I81veLyIv6\u002BAyiaj1wxrhCaKZKHEhPnJPWHSj8=","dKgt3IEu/8EG0hhc3MNntcHSKjpu5xKJ/sW8XXITYlg=","ZsQ6FT\u002BwiZVUl/Ers/aS4E7YpuDWwzl33iI0cmvG1N8=","SK0vwYFCaBSX8NQxElGti41LAz/BF4NLuelJWaSG\u002BVw=","PsD0eKnFAp9a6fIFA95vJLSZZRA6gmVf34RFmPG0R2w=","3l0yn5g2qD/p4A8lEINcu/VWSQVPJMb4Tx\u002B74/a/Y54=","6svj8oSpM6xvYCJBZir1nayBx8GA1ZXQDP/80i4g6Hw=","X0EOUQiGMtRP5ntf0UWHseaf3v0OVFbns0v3RB7y62U=","hTDNFKvsKpAEFnt7PxCK35ELmRbkt5MO\u002Bet4of87MXA=","OSYlG96O8yKheOgEFDcUdNKl13KT1MEJNMDxtoLW\u002B/Y=","S34NDgVsgDwwsMuN1SR9\u002BWHi9RFYEp7IIhl1ACKbMfE=","BCZHlinJX3Ubf7YL\u002B2BbssrEbX9faS1/5e0wxm73gmI=","D/WGht35oyT5IZBBHN/mzYmcNyx1paa8\u002BwbD6sEgUFY=","n0g8T7qbBWVULL5h\u002BkdCD\u002B6v4TqY3LsHh2erUb867CA=","a36yeMwS2FP\u002BB8ws6ZWypksO2VLYl6z6i\u002BMWNPdnj9Y=","AmwUwtidYUkEPL2MXr8tF6yUZ40txxuN4bGo/lR3XoI=","xXYkP\u002Bhkt/isVQYdiebuTpXaoDk1\u002BWybEcVCx19G5lg=","CxwDhU/VBNis9krSrkf0ibfDhUhTTomRJT0uyClyzo8=","JYkHoFohcNd/TzDKjS3n94CawD6Rg1M8GbGNpiH1OAs="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/BlazorApp/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..043a4c7 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"t70NpGI0R9BP1EmW84ZbTvDuJl7WU+79Ol/PW4DnD+U=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["5FQiR3ltSsphaMHseos8C6E0hnRezCakECDngHA6xrg=","9r\u002BoSIB8ce3wD78xiu4\u002BXuOInnDThgVQs8SkkY\u002B3OXQ=","ALf4arbesEId3vurQd0s9LCSMEjnvVYn1SS59sylwNk=","cmz6FBYn\u002BfZbp\u002BRXdlFE/euYM5ofwsPx5k2cY\u002B\u002B\u002BcYo=","2nqTyDxg/5z2\u002BiSXMf521B5YxjOURgZghiGmPI4B47g=","gP3Axc98L3/5WfsqLYntFuwMcHIyQRYwFtiwvKP8JeE=","KUftKJ1It65WTuTO/fjDm5q9UYF5937PTLmeCmXHy4c=","jih\u002BOTHwY5ymo5dLCytVrAKtSQzBupUAKQtA5CDoPro=","H22hHG/wcU64zJNxWZFzhkYWYOr/9V/aKdnnavZXXtA=","zIn2vK4XgnKlqPiiRWbrG5aT0F3rmmubhVRzTpM5id8=","\u002BOB/m0RsuKsMhcrb59iAdNLDuhDPkP59Iz\u002B25MjNOZU=","\u002B4oKdE6SPUe/DALMTU5X\u002BsEeMa\u002BdoyOSroM\u002BrUBZ\u002B2I=","GxBGcB111LBH4bkmZ6ht6J1k5umj\u002B0WZOJ8EjCItQR0=","H9QclZOMz6XKsKxnQufNj4lYPt0LCqrS3Td2v8dC1L4=","FkfdkGy4CmbBJiOir0Cm\u002BZkLnMneMNAtRE\u002Bo3sRiLoY=","tisgjRNN3HHBscd/Oq1JNGndgbabdfLzAmEUIoua7xg=","QATQojPIM7EpLHbOdq0ME8mEbDrzZrU7PkfZkGjBNok=","AKX3mWKm7za79a7kb9Dp/QqzZTHjgS\u002BrkECqKMuf0lA=","Hu6Y2YzKi1Ie02m34xxS7mKJQxPjueHN8bio1uEZwxk=","Uom\u002BdpE\u002BYuP/2y1dZvJCUK\u002BupV7Doz8FlUE/2MMrzSU=","FSSbrwHfYuvkD70TyRwrCZH7if8CdBffe8Wg0qp9LcU=","Ew7\u002B/fNXQKhihaym6sURxLlKy8qcLmVidIFk7/Y6LRg=","CD3w4hmJY7PicUAwT\u002BFc6hBHmkO2gsfjyXb/mS8r1H4=","TaH59vzpndGp4zi6gGhnXXnImNn0xbnhmD/DqT5eXjk=","S1y\u002BCYwYm\u002BL9qkS3wDVyPv0DcItnt5mS1ea/q/wmcI0=","\u002BycRMRk8Tr8IkTgPjK5A6PQ6ZymHAnwJKxHKVHDOUFg=","Ho15XQPyKzbeSKF05z0bt\u002BCvxObrbvdX2wMPEp\u002BduH4=","2XlaQSOc6SJC3Q4/2sVDjyKA2PF7IHAESzJXbpC0Wnw=","/6pBwFH\u002BI4OVvEckxlZK1b5XjOctBYaxfIwLByBoZY0=","N2vComK1bo1qcwPxlWiS6Rtk2\u002B9\u002BsUD0WCOWnMmgyEQ=","UGDcKD4lCIacG88FwFXu8E5kvGL0BjLKy2z1FhzoHYg=","T9iU78sDi3cZxi7J2cIWMzLa4Z4wv6Itjg6RAqMAPKA=","va1Nio9DzVOHDyWqzqACxLjUASNVwGsYjZXwh3NxcZE=","mUBiiAYrRwrzOtR5peUP9EUug4uqotofTzxGeC4BmKM=","28LWJ6szvYdWYZqMPKi8jcgyX4pNiu7ZLovIf/Z6Fgc=","3RbLlVpqKPNYBXxX0M8Ob/vwKQzSyIIFkGnc8NZr3PA=","aYedz2W811OnZ0OX7J\u002BuxRCECuCgu\u002Bxa0n9ww1bAMwo=","Y7sthBOtnndxLK2yuvhMdhGfdWm/NFEALaYNEgLxYo0=","Hqb9q1nSIZop0/9x24F/zZpDoApjXYBhfJ/3n4pnGA8=","tfSxMNMpnpAGaiP\u002BK2Hq1RtsEqjvqutJxcoGBiCISh0=","t8q/RjOMc5gGe5T6PXWiCA78C\u002BeAa5/ldlHoZSqdMgY=","UYf5ZQ97OkrAH7uKvLKuGK43niMuWhXvuOYnFqq4vHc=","JRfeFfuzuVPW0oET0s72/JTyOCIERMxBT1/XB6N7G5U=","ARmfOSyZZFh\u002B7aQKcYKvAEumcQzjA5nGwxsIzzqV7k0=","CiicWkBGscpD5cPhbWC\u002BVdlmVdjHyvn6Js6ofT5VlnU=","L4JkTm7x8Oyafg6m5dBb2bvqYZX5I0t8qlp4zX639jA=","9yqFIiT5fhFRSyJBqn2CdSObVaRXYKMekbC\u002BHfM2Zrk=","hJHwOgWwxoicB24PTpNCV5Vhp2om3ljKR1ffcILcmJU=","2ZZRu6Jn8zV\u002BVYXsEtrwWIn0ZZRcTWS60XAQvUbamH4=","mNsuSEKGQjzfodeDVi7KQcpigSYxQ6WIPSDnaL6vZGk=","ciBWU18djhXvAv0LcxhvzBUlM/7WmR2vgVeVq/QMh3s=","ULD3x5z9MtSjNnZ7Umox843I1\u002Bu0kHRk\u002BPUn1wqI\u002Bjg=","HR3FvSev5EeCIl2IY/Nkcx1cmAsPaJK2WV1dbur72OA=","tdMOuJVkPTZRYy7qdWa1ndMfIEXtvMtcEn\u002Brr2jOI6M=","uoRU6ZxkzsAz7/DH6Vs4QR4tOCntr41bxPNK3i6uYOw=","G4xUDow8f3IUvnyAIVqLx\u002ByqVkqiP0uTaExlGBoq5qA=","UXwhMY/QKd55BsGy1rh1In8ZWw/52JB8aJo/QwPM\u002BUA=","BBNY8txkI\u002B0GiPBR3Zu55O\u002BIu0UZI6EyQmV1qQ8yooo=","q3MdEIoG9edrF0gEE1bexXFW6s46BbT02r9co0I6BSk=","bFbwUq1gTZU4mcl59s3ovgfp/RkHckt44Abvwpu7NCk=","Kj33ppNoGyQKkT9b19/jX2oc/ePIf9LbNhuSHS5XqLY=","606JH5CPnap5EignEk1HUERb\u002Bdi563TOUOlwhG\u002BMR/8=","dFclOcDSRHRE3nggxcjaBPfPRkKnZEOBcGWne\u002B2hXRQ=","KrOcFPy9TIz2aV4bC7X3JUx7u0\u002BRMYTxDXZKFn9FvZo=","SrX0IpFRrwuRSFDwhQdJfVa8BeOU3g6MhIGDu83KNo4=","UIODF24icG1zuRUT53E5UBZntZzshRcr/sSH3APpCZc=","glQya1GiuvjSGjCWEQTVCCBR07fPlLtpJ\u002B\u002BxBRbcEcw=","izWxNgEvojoKHM14wMlc5460/5nB0MrGKU12cNBXPqk=","FuKxCYYAd\u002BSGiBme9Ffu0Y7elv4dn/zKOXueo4b1gKI=","7KZ1nuWDSAOmrpSpD4nsfFguXdcCYQQQIgp5a6nLxUE="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/BlazorApp/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..6a82819 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"sFR+5t/gjPi0WI24r3VYrQx/ZFCEzytflspnb828Uq4=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["5FQiR3ltSsphaMHseos8C6E0hnRezCakECDngHA6xrg=","9r\u002BoSIB8ce3wD78xiu4\u002BXuOInnDThgVQs8SkkY\u002B3OXQ=","ALf4arbesEId3vurQd0s9LCSMEjnvVYn1SS59sylwNk=","cmz6FBYn\u002BfZbp\u002BRXdlFE/euYM5ofwsPx5k2cY\u002B\u002B\u002BcYo=","2nqTyDxg/5z2\u002BiSXMf521B5YxjOURgZghiGmPI4B47g=","gP3Axc98L3/5WfsqLYntFuwMcHIyQRYwFtiwvKP8JeE=","KUftKJ1It65WTuTO/fjDm5q9UYF5937PTLmeCmXHy4c=","jih\u002BOTHwY5ymo5dLCytVrAKtSQzBupUAKQtA5CDoPro=","H22hHG/wcU64zJNxWZFzhkYWYOr/9V/aKdnnavZXXtA=","zIn2vK4XgnKlqPiiRWbrG5aT0F3rmmubhVRzTpM5id8=","\u002BOB/m0RsuKsMhcrb59iAdNLDuhDPkP59Iz\u002B25MjNOZU=","\u002B4oKdE6SPUe/DALMTU5X\u002BsEeMa\u002BdoyOSroM\u002BrUBZ\u002B2I=","GxBGcB111LBH4bkmZ6ht6J1k5umj\u002B0WZOJ8EjCItQR0=","H9QclZOMz6XKsKxnQufNj4lYPt0LCqrS3Td2v8dC1L4=","FkfdkGy4CmbBJiOir0Cm\u002BZkLnMneMNAtRE\u002Bo3sRiLoY=","tisgjRNN3HHBscd/Oq1JNGndgbabdfLzAmEUIoua7xg=","QATQojPIM7EpLHbOdq0ME8mEbDrzZrU7PkfZkGjBNok=","AKX3mWKm7za79a7kb9Dp/QqzZTHjgS\u002BrkECqKMuf0lA=","Hu6Y2YzKi1Ie02m34xxS7mKJQxPjueHN8bio1uEZwxk=","Uom\u002BdpE\u002BYuP/2y1dZvJCUK\u002BupV7Doz8FlUE/2MMrzSU=","FSSbrwHfYuvkD70TyRwrCZH7if8CdBffe8Wg0qp9LcU=","Ew7\u002B/fNXQKhihaym6sURxLlKy8qcLmVidIFk7/Y6LRg=","CD3w4hmJY7PicUAwT\u002BFc6hBHmkO2gsfjyXb/mS8r1H4=","TaH59vzpndGp4zi6gGhnXXnImNn0xbnhmD/DqT5eXjk=","S1y\u002BCYwYm\u002BL9qkS3wDVyPv0DcItnt5mS1ea/q/wmcI0=","\u002BycRMRk8Tr8IkTgPjK5A6PQ6ZymHAnwJKxHKVHDOUFg=","Ho15XQPyKzbeSKF05z0bt\u002BCvxObrbvdX2wMPEp\u002BduH4=","2XlaQSOc6SJC3Q4/2sVDjyKA2PF7IHAESzJXbpC0Wnw=","/6pBwFH\u002BI4OVvEckxlZK1b5XjOctBYaxfIwLByBoZY0=","N2vComK1bo1qcwPxlWiS6Rtk2\u002B9\u002BsUD0WCOWnMmgyEQ=","UGDcKD4lCIacG88FwFXu8E5kvGL0BjLKy2z1FhzoHYg=","T9iU78sDi3cZxi7J2cIWMzLa4Z4wv6Itjg6RAqMAPKA=","va1Nio9DzVOHDyWqzqACxLjUASNVwGsYjZXwh3NxcZE=","mUBiiAYrRwrzOtR5peUP9EUug4uqotofTzxGeC4BmKM=","28LWJ6szvYdWYZqMPKi8jcgyX4pNiu7ZLovIf/Z6Fgc=","3RbLlVpqKPNYBXxX0M8Ob/vwKQzSyIIFkGnc8NZr3PA=","aYedz2W811OnZ0OX7J\u002BuxRCECuCgu\u002Bxa0n9ww1bAMwo=","Y7sthBOtnndxLK2yuvhMdhGfdWm/NFEALaYNEgLxYo0=","Hqb9q1nSIZop0/9x24F/zZpDoApjXYBhfJ/3n4pnGA8=","tfSxMNMpnpAGaiP\u002BK2Hq1RtsEqjvqutJxcoGBiCISh0=","t8q/RjOMc5gGe5T6PXWiCA78C\u002BeAa5/ldlHoZSqdMgY=","UYf5ZQ97OkrAH7uKvLKuGK43niMuWhXvuOYnFqq4vHc=","JRfeFfuzuVPW0oET0s72/JTyOCIERMxBT1/XB6N7G5U=","ARmfOSyZZFh\u002B7aQKcYKvAEumcQzjA5nGwxsIzzqV7k0=","CiicWkBGscpD5cPhbWC\u002BVdlmVdjHyvn6Js6ofT5VlnU=","L4JkTm7x8Oyafg6m5dBb2bvqYZX5I0t8qlp4zX639jA=","9yqFIiT5fhFRSyJBqn2CdSObVaRXYKMekbC\u002BHfM2Zrk=","hJHwOgWwxoicB24PTpNCV5Vhp2om3ljKR1ffcILcmJU=","2ZZRu6Jn8zV\u002BVYXsEtrwWIn0ZZRcTWS60XAQvUbamH4=","mNsuSEKGQjzfodeDVi7KQcpigSYxQ6WIPSDnaL6vZGk=","ciBWU18djhXvAv0LcxhvzBUlM/7WmR2vgVeVq/QMh3s=","ULD3x5z9MtSjNnZ7Umox843I1\u002Bu0kHRk\u002BPUn1wqI\u002Bjg=","HR3FvSev5EeCIl2IY/Nkcx1cmAsPaJK2WV1dbur72OA=","tdMOuJVkPTZRYy7qdWa1ndMfIEXtvMtcEn\u002Brr2jOI6M=","uoRU6ZxkzsAz7/DH6Vs4QR4tOCntr41bxPNK3i6uYOw=","G4xUDow8f3IUvnyAIVqLx\u002ByqVkqiP0uTaExlGBoq5qA=","UXwhMY/QKd55BsGy1rh1In8ZWw/52JB8aJo/QwPM\u002BUA=","BBNY8txkI\u002B0GiPBR3Zu55O\u002BIu0UZI6EyQmV1qQ8yooo=","q3MdEIoG9edrF0gEE1bexXFW6s46BbT02r9co0I6BSk=","bFbwUq1gTZU4mcl59s3ovgfp/RkHckt44Abvwpu7NCk=","Kj33ppNoGyQKkT9b19/jX2oc/ePIf9LbNhuSHS5XqLY=","606JH5CPnap5EignEk1HUERb\u002Bdi563TOUOlwhG\u002BMR/8=","dFclOcDSRHRE3nggxcjaBPfPRkKnZEOBcGWne\u002B2hXRQ=","KrOcFPy9TIz2aV4bC7X3JUx7u0\u002BRMYTxDXZKFn9FvZo=","SrX0IpFRrwuRSFDwhQdJfVa8BeOU3g6MhIGDu83KNo4=","UIODF24icG1zuRUT53E5UBZntZzshRcr/sSH3APpCZc=","glQya1GiuvjSGjCWEQTVCCBR07fPlLtpJ\u002B\u002BxBRbcEcw=","izWxNgEvojoKHM14wMlc5460/5nB0MrGKU12cNBXPqk=","FuKxCYYAd\u002BSGiBme9Ffu0Y7elv4dn/zKOXueo4b1gKI=","7KZ1nuWDSAOmrpSpD4nsfFguXdcCYQQQIgp5a6nLxUE="],"CachedAssets":{"SrX0IpFRrwuRSFDwhQdJfVa8BeOU3g6MhIGDu83KNo4=":{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\","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-09T07:54:51.8550924+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/rpswa.dswa.cache.json b/BlazorApp/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..891ca68 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"O6t2PqnwStdzNAWdMV/1JRK7YFVfK8w5ngx4oo8ijt0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["w4P0Nen3IrptfD1IiWNHUCxdy0wVrieNOIHZr3r/7D0=","UmQRzDVuo8KziW8NxmNUyHm3KD8N7\u002BtRjepodVfJ03w=","ZkqVjuF4lFzXKihZvWAaUbj1IFTcQxlsbaZpkbaX4\u002BQ=","tOeSglYlE6ScW6DccymwNbxHr9iOV1wTgdMRUFweglU=","pnRwFpgMpEHRS6xmQnDxuyk8QqB5dfzOvukb4Vi/kYw=","zTEVu5RRPmoI6z7ccMADfR8piwt6y7r215RL5CpxF2A=","L7P4TG9bZnND/OKsl1JqbwX7Wp4L5tRSpQfXWhxQHuc=","W4AYtyZhRM49c2QDW9we\u002BjMfQBjXptOLq4EoZHN9KcE=","DAlvB4Ieur2867vloHhjZXQmA/lvya225DnD1xaAYlU=","jNhpMD7TqW8vn26vdcc5a4uLIuxFpOfDouOyMu/uUqs=","DuDTX3yAdfG\u002Bam5aN1jUzDxGwKDAzctMS6lvC4bHpVA=","Ly7nlhSEiEdWhiyedTaWpzuiohR1HNOPHlq8BNeafNE=","hLA5N6a4i7pdPEGaq\u002BITxiSX3aLdylt\u002B2/baAP/B5f8=","KHSxV2ofk8ozAusAKdVSt6dY5gB9q9WPKGVhINrXN4E=","iIl6XMRYCjA3h79\u002BJOVPdaPjBEovrtXSBaomPWkGptE=","cmWuHSW/UGktKknRmmtz4O4FVqHNpUw2uZ4yTh\u002BC3s0=","ZX6rgGxTpkV7usm0qjJHi/mFsxfMs9ZXXQCUDICL0II=","KJKMCjiEB7wJEZIOfqKlTCkFyGObsRHoBjfWn\u002B0ZETE=","ZuLdmX\u002B48ni/n7hrWfgzya6kUQKbCk/JxS94MzzQeeo=","ctlnYi6/t\u002B5LuVORnj5sYzlZWf1BvPCVDULlf3xsqmE=","33ue7T4DlCq5iLn9y91vitlMi/a/EKIGQ2MRLdwL/T0=","A0R2Ji6YsDjc8Mutw8h6JV/KW/qR93Txts8Ovaa6S10=","QeY3k4rJH6HzbNPST/1hBQZfKopUXZ3NNXOiDZGX9Rs=","c5wSYEg/m9tzY/e2BOm0B0OcyeXm2n/gtJiqyO3a0wg=","mQT0QmigdOhapY\u002BKq2bIFkq8ewpENkWiaaiOJgmK7sg=","3faPDWeI3/wSVSC3CLY04majPueUsExnPEmqOdUKEzU=","MhHoD/Gbd68VPYewDzpdGyGQBiBVcNAkNLY5q20yVeg=","0VlHqGRxfF0oKAdiwTjBc\u002BlobRqnOViSjdl6z9MdGGA=","6QSjbVAL2u/kjbhSZXjc5Ojxc49pFi0WyJW0BtKejXo=","/xN7HyUw8F9rRD/UAoWAwfGAaM8FiHKD7mnoEIfArsU=","XXZgx8z5MtVxBSbZwnrF6bIxlmDbEYxd/2LqOwzBSuY=","/vnUmkaw0ZFTdEkB6YavtuP7XtmR7b//67\u002BIT3V3aI4=","iyo\u002BOIveDbRtb/M9bX7epM/bBuh0JC2YFKu5fVLPkbU=","JiumHNlNqg\u002BxN1D6ke5fk4ET6j\u002BPfUGWoxHvHBicZPw=","4dYNXVr6c7Cw8b6zSf0D79upjlt2zuXJfc6PZRbjIqg=","cnmSE87HUatOqc/HBVzesLwzvAriOVBe9o1Wh1B2gE8=","ruEEHLoQ7thumguH/rEao01eFa2m9vXIvhe2gRio0J4=","SU\u002BiP93VpEQertbMJp/1YBegJAeJbfSsbtMVqsrlrDQ=","7CmKW7O6V2RKj1DPWPJc4uPJF17PRLDR2UpOkK4REFA=","FjZ4P05AcPGE9XNs5WiCEjs6SzEW5WVKUqQpGzKNABY=","pgJNbwDza27tbsw0sYUN\u002BCXcUHnCTttWTUFDoz9pPOQ=","0lpVdwzzfeiCDbBUeflFH5OMezeN7qYvNq1df/eH6Os=","usqfXwbFjkJG2vv1imJC2EherHNewiowKgGEqIMD0EY=","7B0bznFt1v2GR9fJRZzpqZfKFiH21dRjm\u002BucJRzoVf0=","ffffJLCNZUStdVGK49c7tXlBtaKXq\u002BT61G28b1eebSE=","z4j4pK5ls2cRSGRlRcxRpZuBW58XccPXs63qRDDajTw=","kneEWCMIJ26PFqvEbpkg3u9uK8Kgep15wSZSRP2JPvs=","uQM0VpN4bPbwxag8fAeVzGhrfwu82tuNSEAapnBoo2g=","ieAtlhP9vd1hnMzxh9n7okpWtRxGOsVOSZqBfvtiDrE=","mKwGjpMCl3WOWbdrjJnaMA9D/i5SfEzR5EIk87quoiE=","7uItJMu65q9Gq4MTNyAt1jz2bFoJJREISi1c0gbwe38=","Tt/yuoGPFATBqNkwg5iot41SZ4MrUdYcCoSwhhaVSjs=","XDaJoZ4RKjUJYybYRHo0Mq0VRNRLRiX8Ipd5iUjMY7E=","AuEDCUHuVYTcBZxjzq/jQLZALpU15p8fm1ijMwQgRAA=","zdFFRw\u002B7DDc/3HvJhK7XBaVmoup5/b0W\u002B3BBSG\u002BMB\u002BE=","Yizh2FHvr8iy5MDJSyxWkInz9oxXlxYmJC\u002B4BeY2eFc=","n/17\u002BHon2obd3r4umgKVYwBO7o681e3zGMyRnfVFpsg=","otQtCkLDVpEUnkApnAkhFecRhvHw437b80//T5rFBqE=","X2\u002BYF2oPQ7PZvL9swjzDiSyR3JSM\u002BJ3F8SpcM7JH9cU=","ICNI3aNtEhOD7nJmtoFtg3xtTxTTZb2SPm/sPAbKnMo=","Gk5EfB8koUKxOHT7TrDaB9VxXt7\u002B3uWy1oYvKp2KBgI=","ynXQvKAU6gVh5pEi2NFtMxhgIeoLT3dd5ze9PThOs0w=","hoTQ4Ka6qI0of1jzV\u002BpCcJ\u002B/2LgniP6lFc7IAE/Se/4="],"CachedAssets":{"w4P0Nen3IrptfD1IiWNHUCxdy0wVrieNOIHZr3r/7D0=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\app.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ag9i8ft9fn","Integrity":"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\app.css","FileLength":3014,"LastWriteTime":"2026-01-09T08:08:25.9103562+00:00"},"UmQRzDVuo8KziW8NxmNUyHm3KD8N7\u002BtRjepodVfJ03w=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\favicon.png","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ifv42okdf2","Integrity":"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.png","FileLength":1148,"LastWriteTime":"2026-01-09T07:54:51.3745254+00:00"},"ZkqVjuF4lFzXKihZvWAaUbj1IFTcQxlsbaZpkbaX4\u002BQ=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"bqjiyaj88i","Integrity":"Yy5/hBqRmmU2MJ1TKwP2aXoTO6\u002BOjzrLmJIsC2Wy4H8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":70329,"LastWriteTime":"2026-01-09T07:54:51.3780573+00:00"},"tOeSglYlE6ScW6DccymwNbxHr9iOV1wTgdMRUFweglU=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"c2jlpeoesf","Integrity":"xAT\u002Bn25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":203221,"LastWriteTime":"2026-01-09T07:54:51.3827045+00:00"},"pnRwFpgMpEHRS6xmQnDxuyk8QqB5dfzOvukb4Vi/kYw=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"erw9l3u2r3","Integrity":"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":51795,"LastWriteTime":"2026-01-09T07:54:51.3847695+00:00"},"zTEVu5RRPmoI6z7ccMADfR8piwt6y7r215RL5CpxF2A=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"aexeepp0ev","Integrity":"kgL\u002BxwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":115986,"LastWriteTime":"2026-01-09T07:54:51.3883303+00:00"},"L7P4TG9bZnND/OKsl1JqbwX7Wp4L5tRSpQfXWhxQHuc=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"d7shbmvgxk","Integrity":"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":70403,"LastWriteTime":"2026-01-09T07:54:51.3914348+00:00"},"W4AYtyZhRM49c2QDW9we\u002BjMfQBjXptOLq4EoZHN9KcE=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ausgxo2sd3","Integrity":"/siQUA8yX830j\u002BcL4amKHY3yBtn3n8z3Eg\u002BVZ15f90k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":203225,"LastWriteTime":"2026-01-09T07:54:51.4635534+00:00"},"DAlvB4Ieur2867vloHhjZXQmA/lvya225DnD1xaAYlU=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"k8d9w2qqmf","Integrity":"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":51870,"LastWriteTime":"2026-01-09T07:54:51.4695057+00:00"},"jNhpMD7TqW8vn26vdcc5a4uLIuxFpOfDouOyMu/uUqs=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"cosvhxvwiu","Integrity":"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":116063,"LastWriteTime":"2026-01-09T07:54:51.4730504+00:00"},"DuDTX3yAdfG\u002Bam5aN1jUzDxGwKDAzctMS6lvC4bHpVA=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ub07r2b239","Integrity":"lo9YI82OF03vojdu\u002BXOR3\u002BDRrLIpMhpzZNmHbM5CDMA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":12065,"LastWriteTime":"2026-01-09T07:54:51.4771579+00:00"},"Ly7nlhSEiEdWhiyedTaWpzuiohR1HNOPHlq8BNeafNE=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fvhpjtyr6v","Integrity":"RXJ/QZiBfHXoPtXR2EgC\u002BbFo2pe3GtbZO722RtiLGzQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":129371,"LastWriteTime":"2026-01-09T07:54:51.4820572+00:00"},"hLA5N6a4i7pdPEGaq\u002BITxiSX3aLdylt\u002B2/baAP/B5f8=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"b7pk76d08c","Integrity":"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":10126,"LastWriteTime":"2026-01-09T07:54:51.4856628+00:00"},"KHSxV2ofk8ozAusAKdVSt6dY5gB9q9WPKGVhINrXN4E=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"fsbi9cje9m","Integrity":"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":51369,"LastWriteTime":"2026-01-09T07:54:51.5279118+00:00"},"iIl6XMRYCjA3h79\u002BJOVPdaPjBEovrtXSBaomPWkGptE=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"rzd6atqjts","Integrity":"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn\u002BGg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":12058,"LastWriteTime":"2026-01-09T07:54:51.5289116+00:00"},"cmWuHSW/UGktKknRmmtz4O4FVqHNpUw2uZ4yTh\u002BC3s0=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ee0r1s7dh0","Integrity":"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":129386,"LastWriteTime":"2026-01-09T07:54:51.5340091+00:00"},"ZX6rgGxTpkV7usm0qjJHi/mFsxfMs9ZXXQCUDICL0II=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"dxx9fxp4il","Integrity":"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":10198,"LastWriteTime":"2026-01-09T07:54:51.5349197+00:00"},"KJKMCjiEB7wJEZIOfqKlTCkFyGObsRHoBjfWn\u002B0ZETE=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jd9uben2k1","Integrity":"910zw\u002BrMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":63943,"LastWriteTime":"2026-01-09T07:54:51.5395496+00:00"},"ZuLdmX\u002B48ni/n7hrWfgzya6kUQKbCk/JxS94MzzQeeo=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"khv3u5hwcm","Integrity":"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM\u002Bh\u002Byo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":107823,"LastWriteTime":"2026-01-09T07:54:51.5424903+00:00"},"ctlnYi6/t\u002B5LuVORnj5sYzlZWf1BvPCVDULlf3xsqmE=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"r4e9w2rdcm","Integrity":"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q\u002BLhL\u002Bz9553O0cY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":267535,"LastWriteTime":"2026-01-09T07:54:51.5490066+00:00"},"33ue7T4DlCq5iLn9y91vitlMi/a/EKIGQ2MRLdwL/T0=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lcd1t2u6c8","Integrity":"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":85352,"LastWriteTime":"2026-01-09T07:54:51.5520056+00:00"},"A0R2Ji6YsDjc8Mutw8h6JV/KW/qR93Txts8Ovaa6S10=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"c2oey78nd0","Integrity":"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":180381,"LastWriteTime":"2026-01-09T07:54:51.5560076+00:00"},"QeY3k4rJH6HzbNPST/1hBQZfKopUXZ3NNXOiDZGX9Rs=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"tdbxkamptv","Integrity":"H6wkBbSwjua2veJoThJo4uy161jp\u002BDOiZTloUlcZ6qQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":107691,"LastWriteTime":"2026-01-09T07:54:51.5596179+00:00"},"c5wSYEg/m9tzY/e2BOm0B0OcyeXm2n/gtJiqyO3a0wg=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"j5mq2jizvt","Integrity":"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":267476,"LastWriteTime":"2026-01-09T07:54:51.6004663+00:00"},"mQT0QmigdOhapY\u002BKq2bIFkq8ewpENkWiaaiOJgmK7sg=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"06098lyss8","Integrity":"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":85281,"LastWriteTime":"2026-01-09T07:54:51.6034902+00:00"},"3faPDWeI3/wSVSC3CLY04majPueUsExnPEmqOdUKEzU=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"nvvlpmu67g","Integrity":"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":180217,"LastWriteTime":"2026-01-09T07:54:51.6078934+00:00"},"MhHoD/Gbd68VPYewDzpdGyGQBiBVcNAkNLY5q20yVeg=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"s35ty4nyc5","Integrity":"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":281046,"LastWriteTime":"2026-01-09T07:54:51.6157335+00:00"},"0VlHqGRxfF0oKAdiwTjBc\u002BlobRqnOViSjdl6z9MdGGA=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"pj5nd1wqec","Integrity":"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":679755,"LastWriteTime":"2026-01-09T07:54:51.6306859+00:00"},"6QSjbVAL2u/kjbhSZXjc5Ojxc49pFi0WyJW0BtKejXo=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"46ein0sx1k","Integrity":"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":232803,"LastWriteTime":"2026-01-09T07:54:51.6349467+00:00"},"/xN7HyUw8F9rRD/UAoWAwfGAaM8FiHKD7mnoEIfArsU=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"v0zj4ognzu","Integrity":"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP\u002BGXYc3V1WwFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":589892,"LastWriteTime":"2026-01-09T07:54:51.6554212+00:00"},"XXZgx8z5MtVxBSbZwnrF6bIxlmDbEYxd/2LqOwzBSuY=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"37tfw0ft22","Integrity":"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":280259,"LastWriteTime":"2026-01-09T07:54:51.6603723+00:00"},"/vnUmkaw0ZFTdEkB6YavtuP7XtmR7b//67\u002BIT3V3aI4=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hrwsygsryq","Integrity":"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":679615,"LastWriteTime":"2026-01-09T07:54:51.6766985+00:00"},"iyo\u002BOIveDbRtb/M9bX7epM/bBuh0JC2YFKu5fVLPkbU=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"pk9g2wxc8p","Integrity":"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":232911,"LastWriteTime":"2026-01-09T07:54:51.6828152+00:00"},"JiumHNlNqg\u002BxN1D6ke5fk4ET6j\u002BPfUGWoxHvHBicZPw=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ft3s53vfgj","Integrity":"rTzXlnepcb/vgFAiB\u002BU7ODQAfOlJLfM3gY6IU7eIANk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":589087,"LastWriteTime":"2026-01-09T07:54:51.7401986+00:00"},"4dYNXVr6c7Cw8b6zSf0D79upjlt2zuXJfc6PZRbjIqg=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6cfz1n2cew","Integrity":"mkoRoV24jV\u002BrCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":207819,"LastWriteTime":"2026-01-09T07:54:51.7474511+00:00"},"cnmSE87HUatOqc/HBVzesLwzvAriOVBe9o1Wh1B2gE8=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"6pdc2jztkx","Integrity":"Wq4aWW1rQdJ\u002B6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":444579,"LastWriteTime":"2026-01-09T07:54:51.7580829+00:00"},"ruEEHLoQ7thumguH/rEao01eFa2m9vXIvhe2gRio0J4=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"493y06b0oq","Integrity":"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC\u002BmjoJimHGw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":80721,"LastWriteTime":"2026-01-09T07:54:51.7605179+00:00"},"SU\u002BiP93VpEQertbMJp/1YBegJAeJbfSsbtMVqsrlrDQ=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"iovd86k7lj","Integrity":"Xj4HYxZBQ7qqHKBwa2EAugRS\u002BRHWzpcTtI49vgezUSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":332090,"LastWriteTime":"2026-01-09T07:54:51.7686954+00:00"},"7CmKW7O6V2RKj1DPWPJc4uPJF17PRLDR2UpOkK4REFA=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"vr1egmr9el","Integrity":"exiXZNJDwucXfuje3CbXPbuS6\u002BEry3z9sP\u002Bpgmvh8nA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":135829,"LastWriteTime":"2026-01-09T07:54:51.7728915+00:00"},"FjZ4P05AcPGE9XNs5WiCEjs6SzEW5WVKUqQpGzKNABY=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"kbrnm935zg","Integrity":"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":305438,"LastWriteTime":"2026-01-09T07:54:51.7809945+00:00"},"pgJNbwDza27tbsw0sYUN\u002BCXcUHnCTttWTUFDoz9pPOQ=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"jj8uyg4cgr","Integrity":"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa\u002BsPe6h794sFRQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":73935,"LastWriteTime":"2026-01-09T07:54:51.784117+00:00"},"0lpVdwzzfeiCDbBUeflFH5OMezeN7qYvNq1df/eH6Os=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"y7v9cxd14o","Integrity":"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":222455,"LastWriteTime":"2026-01-09T07:54:51.7900679+00:00"},"usqfXwbFjkJG2vv1imJC2EherHNewiowKgGEqIMD0EY=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"notf2xhcfb","Integrity":"\u002BUW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":145401,"LastWriteTime":"2026-01-09T07:54:51.7944838+00:00"},"7B0bznFt1v2GR9fJRZzpqZfKFiH21dRjm\u002BucJRzoVf0=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"h1s4sie4z3","Integrity":"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":306606,"LastWriteTime":"2026-01-09T07:54:51.8374677+00:00"},"ffffJLCNZUStdVGK49c7tXlBtaKXq\u002BT61G28b1eebSE=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"63fj8s7r0e","Integrity":"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":60635,"LastWriteTime":"2026-01-09T07:54:51.8399729+00:00"},"z4j4pK5ls2cRSGRlRcxRpZuBW58XccPXs63qRDDajTw=":{"Identity":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\source\\repos\\CanRead\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0j3bgjxly4","Integrity":"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":220561,"LastWriteTime":"2026-01-09T07:54:51.8455764+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css b/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css new file mode 100644 index 0000000..564ee1d --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/MainLayout.razor.rz.scp.css @@ -0,0 +1,98 @@ +.page[b-qgsvw684bo] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-qgsvw684bo] { + flex: 1; +} + +.sidebar[b-qgsvw684bo] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-qgsvw684bo] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-qgsvw684bo] a:hover, .top-row[b-qgsvw684bo] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-qgsvw684bo] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-qgsvw684bo] { + justify-content: space-between; + } + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-qgsvw684bo] { + flex-direction: row; + } + + .sidebar[b-qgsvw684bo] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-qgsvw684bo] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-qgsvw684bo] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-qgsvw684bo], article[b-qgsvw684bo] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-qgsvw684bo] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-qgsvw684bo] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } diff --git a/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css b/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css new file mode 100644 index 0000000..efd4447 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/NavMenu.razor.rz.scp.css @@ -0,0 +1,105 @@ +.navbar-toggler[b-g8o6n169oq] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-g8o6n169oq] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-g8o6n169oq] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-g8o6n169oq] { + font-size: 1.1rem; +} + +.bi[b-g8o6n169oq] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-g8o6n169oq] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-g8o6n169oq] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-g8o6n169oq] { + padding-bottom: 1rem; + } + + .nav-item[b-g8o6n169oq] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-g8o6n169oq] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-g8o6n169oq] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-g8o6n169oq] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-g8o6n169oq] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-g8o6n169oq] { + display: none; + } + + .nav-scrollable[b-g8o6n169oq] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css b/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css new file mode 100644 index 0000000..6a3ce46 --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/scopedcss/Components/Layout/ReconnectModal.razor.rz.scp.css @@ -0,0 +1,157 @@ +.components-reconnect-first-attempt-visible[b-pphnjiao61], +.components-reconnect-repeated-attempt-visible[b-pphnjiao61], +.components-reconnect-failed-visible[b-pphnjiao61], +.components-pause-visible[b-pphnjiao61], +.components-resume-failed-visible[b-pphnjiao61], +.components-rejoining-animation[b-pphnjiao61] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-pphnjiao61] { + display: block; +} + + +#components-reconnect-modal[b-pphnjiao61] { + 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-pphnjiao61 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-pphnjiao61 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-pphnjiao61]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-pphnjiao61 { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-pphnjiao61 { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-pphnjiao61 { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-pphnjiao61] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-pphnjiao61] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-pphnjiao61] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-pphnjiao61] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-pphnjiao61] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-pphnjiao61] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-pphnjiao61] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-pphnjiao61 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-pphnjiao61] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-pphnjiao61 { + 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/BlazorApp/obj/Debug/net10.0/scopedcss/bundle/BlazorApp.styles.css b/BlazorApp/obj/Debug/net10.0/scopedcss/bundle/BlazorApp.styles.css new file mode 100644 index 0000000..de102bd --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/scopedcss/bundle/BlazorApp.styles.css @@ -0,0 +1,363 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-qgsvw684bo] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-qgsvw684bo] { + flex: 1; +} + +.sidebar[b-qgsvw684bo] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-qgsvw684bo] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-qgsvw684bo] a:hover, .top-row[b-qgsvw684bo] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-qgsvw684bo] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-qgsvw684bo] { + justify-content: space-between; + } + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-qgsvw684bo] { + flex-direction: row; + } + + .sidebar[b-qgsvw684bo] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-qgsvw684bo] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-qgsvw684bo] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-qgsvw684bo], article[b-qgsvw684bo] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-qgsvw684bo] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-qgsvw684bo] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-g8o6n169oq] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-g8o6n169oq] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-g8o6n169oq] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-g8o6n169oq] { + font-size: 1.1rem; +} + +.bi[b-g8o6n169oq] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-g8o6n169oq] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-g8o6n169oq] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-g8o6n169oq] { + padding-bottom: 1rem; + } + + .nav-item[b-g8o6n169oq] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-g8o6n169oq] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-g8o6n169oq] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-g8o6n169oq] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-g8o6n169oq] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-g8o6n169oq] { + display: none; + } + + .nav-scrollable[b-g8o6n169oq] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-pphnjiao61], +.components-reconnect-repeated-attempt-visible[b-pphnjiao61], +.components-reconnect-failed-visible[b-pphnjiao61], +.components-pause-visible[b-pphnjiao61], +.components-resume-failed-visible[b-pphnjiao61], +.components-rejoining-animation[b-pphnjiao61] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-pphnjiao61] { + display: block; +} + + +#components-reconnect-modal[b-pphnjiao61] { + 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-pphnjiao61 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-pphnjiao61 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-pphnjiao61]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-pphnjiao61 { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-pphnjiao61 { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-pphnjiao61 { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-pphnjiao61] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-pphnjiao61] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-pphnjiao61] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-pphnjiao61] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-pphnjiao61] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-pphnjiao61] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-pphnjiao61] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-pphnjiao61 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-pphnjiao61] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-pphnjiao61 { + 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/BlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/BlazorApp.bundle.scp.css b/BlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/BlazorApp.bundle.scp.css new file mode 100644 index 0000000..de102bd --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/scopedcss/projectbundle/BlazorApp.bundle.scp.css @@ -0,0 +1,363 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-qgsvw684bo] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-qgsvw684bo] { + flex: 1; +} + +.sidebar[b-qgsvw684bo] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-qgsvw684bo] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-qgsvw684bo] a:hover, .top-row[b-qgsvw684bo] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-qgsvw684bo] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-qgsvw684bo] { + justify-content: space-between; + } + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-qgsvw684bo] { + flex-direction: row; + } + + .sidebar[b-qgsvw684bo] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-qgsvw684bo] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-qgsvw684bo] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-qgsvw684bo], article[b-qgsvw684bo] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-qgsvw684bo] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-qgsvw684bo] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-g8o6n169oq] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-g8o6n169oq] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-g8o6n169oq] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-g8o6n169oq] { + font-size: 1.1rem; +} + +.bi[b-g8o6n169oq] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-g8o6n169oq] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-g8o6n169oq] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-g8o6n169oq] { + padding-bottom: 1rem; + } + + .nav-item[b-g8o6n169oq] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-g8o6n169oq] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-g8o6n169oq] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-g8o6n169oq] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-g8o6n169oq] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-g8o6n169oq] { + display: none; + } + + .nav-scrollable[b-g8o6n169oq] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-pphnjiao61], +.components-reconnect-repeated-attempt-visible[b-pphnjiao61], +.components-reconnect-failed-visible[b-pphnjiao61], +.components-pause-visible[b-pphnjiao61], +.components-resume-failed-visible[b-pphnjiao61], +.components-rejoining-animation[b-pphnjiao61] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-pphnjiao61] { + display: block; +} + + +#components-reconnect-modal[b-pphnjiao61] { + 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-pphnjiao61 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-pphnjiao61 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-pphnjiao61]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-pphnjiao61 { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-pphnjiao61 { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-pphnjiao61 { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-pphnjiao61] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-pphnjiao61] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-pphnjiao61] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-pphnjiao61] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-pphnjiao61] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-pphnjiao61] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-pphnjiao61] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-pphnjiao61 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-pphnjiao61] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-pphnjiao61 { + 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/BlazorApp/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/BlazorApp/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..e08e31e --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="},{"Name":"label","Value":"BlazorApp.styles.css.gz"}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="}]},{"Route":"BlazorApp.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="}]},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="}]},{"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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"}]},{"Route":"app.ag9i8ft9fn.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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="}]},{"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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/staticwebassets.build.json b/BlazorApp/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..7f8970b --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"oSJTl2DJOi0cDbhsules8VyIjkzTafOg6GnAHKjgkUM=","Source":"BlazorApp","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"BlazorApp\\wwwroot","Source":"BlazorApp","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.server.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"2lgipwaf5j","Integrity":"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\build\\..\\_framework\\blazor.server.js","FileLength":164726,"LastWriteTime":"2025-11-19T16:19:02+00:00"},{"Identity":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.web.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"wmp8iwak4q","Integrity":"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\build\\..\\_framework\\blazor.web.js","FileLength":200101,"LastWriteTime":"2025-11-19T16:19:10+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\Components\\Layout\\ReconnectModal.razor.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\","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-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint=lcd1t2u6c8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cy4j794sg8","Integrity":"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":11149,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint=r4e9w2rdcm}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"21g01g2f66","Integrity":"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":44266,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint=jj8uyg4cgr}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6t36crcw3z","Integrity":"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":18542,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.web#[.{fingerprint=wmp8iwak4q}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.web.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"sviimvbo08","Integrity":"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.web.js","FileLength":55157,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint=pk9g2wxc8p}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3m4n8jcl3h","Integrity":"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":31137,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint=pj5nd1wqec}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"glev5uv9kg","Integrity":"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":114902,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint=fvhpjtyr6v}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5b7ig2cj79","Integrity":"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":25714,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint=kbrnm935zg}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"6e2hoibiq5","Integrity":"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":64234,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint=ee0r1s7dh0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"kqk14ew2nl","Integrity":"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":25726,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint=nvvlpmu67g}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"0gru265j2n","Integrity":"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":24456,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint=aexeepp0ev}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3latwtrz94","Integrity":"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":14072,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint=dxx9fxp4il}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"b8ltiz8u9h","Integrity":"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":3231,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","SourceId":"BlazorApp","SourceType":"Computed","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"BlazorApp#[.{fingerprint=2mc2qwa0tf}]?.styles.css.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"axr7t46cgl","Integrity":"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","FileLength":2488,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint=cosvhxvwiu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"f178oapzb7","Integrity":"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":14093,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint=iovd86k7lj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"4jjusqppj5","Integrity":"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":86518,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint=tdbxkamptv}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"letd63iq5t","Integrity":"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":12069,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint=ub07r2b239}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"syqesifl59","Integrity":"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":3375,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"_framework/blazor.server#[.{fingerprint=2lgipwaf5j}]?.js.gz","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.server.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8iwy2ctnyf","Integrity":"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\blazor.server.js","FileLength":44315,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint=493y06b0oq}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"18qy0lzppu","Integrity":"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":23799,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint=6pdc2jztkx}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"iwjfk8z8sl","Integrity":"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":92277,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint=hrwsygsryq}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p2knqut3gi","Integrity":"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":114877,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"app#[.{fingerprint=ag9i8ft9fn}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\app.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bh0qlye1dn","Integrity":"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\app.css","FileLength":1584,"LastWriteTime":"2026-01-09T08:08:27+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"Components/Layout/ReconnectModal#[.{fingerprint=13ja33weya}]?.razor.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\Components\\Layout\\ReconnectModal.razor.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7rrv2rl122","Integrity":"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\Components\\Layout\\ReconnectModal.razor.js","FileLength":722,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint=0j3bgjxly4}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s9vzkbm4vd","Integrity":"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":55524,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint=ausgxo2sd3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lnst782kog","Integrity":"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":33061,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint=s35ty4nyc5}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"dp6dicxiq4","Integrity":"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":33478,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint=37tfw0ft22}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7kvveri0mt","Integrity":"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":33366,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint=ft3s53vfgj}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uom9ela1zq","Integrity":"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":91866,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint=46ein0sx1k}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"uhnhmx07wd","Integrity":"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":31118,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint=63fj8s7r0e}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"lnp63td8x7","Integrity":"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":16571,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint=c2oey78nd0}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"oiolxl3gck","Integrity":"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":24487,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint=jd9uben2k1}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ldvkm706vq","Integrity":"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":15028,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint=vr1egmr9el}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9z27fl73l7","Integrity":"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":28886,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint=c2jlpeoesf}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"bpa5g0wlhg","Integrity":"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":33080,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint=h1s4sie4z3}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fizolni560","Integrity":"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":64490,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint=06098lyss8}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"8ukjvmro89","Integrity":"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":11127,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint=erw9l3u2r3}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"s32t06avo3","Integrity":"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":6102,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint=j5mq2jizvt}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"pnmw3mh9ht","Integrity":"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":44237,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint=notf2xhcfb}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"winy7sfnv8","Integrity":"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":29657,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint=khv3u5hwcm}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"g3lpifp44y","Integrity":"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":12127,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint=v0zj4ognzu}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"77t5enldb7","Integrity":"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":91960,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint=k8d9w2qqmf}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ykjynei6kc","Integrity":"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":6104,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","SourceId":"BlazorApp","SourceType":"Computed","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"BlazorApp#[.{fingerprint=2mc2qwa0tf}]!.bundle.scp.css.gz","AssetKind":"All","AssetMode":"Reference","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"axr7t46cgl","Integrity":"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","FileLength":2488,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint=b7pk76d08c}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"5fx04t62wt","Integrity":"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":3199,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint=d7shbmvgxk}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"316ql842l5","Integrity":"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":6918,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint=bqjiyaj88i}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"p1uwaguxw6","Integrity":"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":6915,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint=6cfz1n2cew}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"zqu1wssclk","Integrity":"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":44461,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint=rzd6atqjts}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"vkbr9nomgm","Integrity":"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":3364,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint=fsbi9cje9m}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ggfb0v5ylw","Integrity":"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":12568,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint=y7v9cxd14o}]?.map.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"03mhy7u5rs","Integrity":"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":56385,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","SourceId":"BlazorApp","SourceType":"Computed","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","BasePath":"/","RelativePath":"BlazorApp#[.{fingerprint}]?.styles.css","AssetKind":"All","AssetMode":"CurrentProject","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ApplicationBundle","Fingerprint":"2mc2qwa0tf","Integrity":"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","FileLength":10327,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","SourceId":"BlazorApp","SourceType":"Computed","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\","BasePath":"/","RelativePath":"BlazorApp#[.{fingerprint}]!.bundle.scp.css","AssetKind":"All","AssetMode":"Reference","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"ScopedCss","AssetTraitValue":"ProjectBundle","Fingerprint":"2mc2qwa0tf","Integrity":"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","FileLength":10327,"LastWriteTime":"2026-01-09T08:05:30+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\app.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"app#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ag9i8ft9fn","Integrity":"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\app.css","FileLength":3014,"LastWriteTime":"2026-01-09T08:08:25+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\favicon.png","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ifv42okdf2","Integrity":"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\favicon.png","FileLength":1148,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"bqjiyaj88i","Integrity":"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","FileLength":70329,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"c2jlpeoesf","Integrity":"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","FileLength":203221,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"erw9l3u2r3","Integrity":"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","FileLength":51795,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"aexeepp0ev","Integrity":"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","FileLength":115986,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"d7shbmvgxk","Integrity":"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","FileLength":70403,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ausgxo2sd3","Integrity":"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","FileLength":203225,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"k8d9w2qqmf","Integrity":"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","FileLength":51870,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"cosvhxvwiu","Integrity":"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","FileLength":116063,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ub07r2b239","Integrity":"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","FileLength":12065,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fvhpjtyr6v","Integrity":"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","FileLength":129371,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"b7pk76d08c","Integrity":"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","FileLength":10126,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"fsbi9cje9m","Integrity":"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","FileLength":51369,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"rzd6atqjts","Integrity":"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","FileLength":12058,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ee0r1s7dh0","Integrity":"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","FileLength":129386,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"dxx9fxp4il","Integrity":"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","FileLength":10198,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jd9uben2k1","Integrity":"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","FileLength":63943,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"khv3u5hwcm","Integrity":"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","FileLength":107823,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"r4e9w2rdcm","Integrity":"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","FileLength":267535,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lcd1t2u6c8","Integrity":"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","FileLength":85352,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"c2oey78nd0","Integrity":"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","FileLength":180381,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"tdbxkamptv","Integrity":"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","FileLength":107691,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"j5mq2jizvt","Integrity":"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","FileLength":267476,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"06098lyss8","Integrity":"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","FileLength":85281,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"nvvlpmu67g","Integrity":"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","FileLength":180217,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"s35ty4nyc5","Integrity":"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","FileLength":281046,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"pj5nd1wqec","Integrity":"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","FileLength":679755,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"46ein0sx1k","Integrity":"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","FileLength":232803,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"v0zj4ognzu","Integrity":"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","FileLength":589892,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"37tfw0ft22","Integrity":"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","FileLength":280259,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hrwsygsryq","Integrity":"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","FileLength":679615,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"pk9g2wxc8p","Integrity":"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","FileLength":232911,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ft3s53vfgj","Integrity":"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","FileLength":589087,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6cfz1n2cew","Integrity":"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","FileLength":207819,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"6pdc2jztkx","Integrity":"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","FileLength":444579,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"493y06b0oq","Integrity":"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","FileLength":80721,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"iovd86k7lj","Integrity":"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","FileLength":332090,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vr1egmr9el","Integrity":"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","FileLength":135829,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"kbrnm935zg","Integrity":"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","FileLength":305438,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"jj8uyg4cgr","Integrity":"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","FileLength":73935,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.esm.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"y7v9cxd14o","Integrity":"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","FileLength":222455,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"notf2xhcfb","Integrity":"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","FileLength":145401,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"h1s4sie4z3","Integrity":"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","FileLength":306606,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"63fj8s7r0e","Integrity":"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","FileLength":60635,"LastWriteTime":"2026-01-09T07:54:51+00:00"},{"Identity":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","SourceId":"BlazorApp","SourceType":"Discovered","ContentRoot":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","BasePath":"/","RelativePath":"lib/bootstrap/dist/js/bootstrap.min.js#[.{fingerprint}]?.map","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0j3bgjxly4","Integrity":"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","FileLength":220561,"LastWriteTime":"2026-01-09T07:54:51+00:00"}],"Endpoints":[{"Route":"BlazorApp.2mc2qwa0tf.bundle.scp.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.bundle.scp.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.bundle.scp.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.bundle.scp.css"}]},{"Route":"BlazorApp.2mc2qwa0tf.bundle.scp.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="},{"Name":"label","Value":"BlazorApp.bundle.scp.css.gz"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="},{"Name":"label","Value":"BlazorApp.styles.css.gz"}]},{"Route":"BlazorApp.bundle.scp.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.bundle.scp.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\projectbundle\\BlazorApp.bundle.scp.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="}]},{"Route":"BlazorApp.bundle.scp.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="}]},{"Route":"BlazorApp.styles.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.styles.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="}]},{"Route":"BlazorApp.styles.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\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":"Fri, 09 Jan 2026 07:54:51 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":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 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":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.gz"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\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":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI="},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.razor.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 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":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_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":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_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":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="}]},{"Route":"_framework/blazor.server.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="}]},{"Route":"_framework/blazor.web.js","AssetFile":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="}]},{"Route":"_framework/blazor.web.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"}]},{"Route":"app.ag9i8ft9fn.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="}]},{"Route":"app.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:27 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:05:30 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/staticwebassets.build.json.cache b/BlazorApp/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..ac5c88b --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +oSJTl2DJOi0cDbhsules8VyIjkzTafOg6GnAHKjgkUM= \ No newline at end of file diff --git a/BlazorApp/obj/Debug/net10.0/staticwebassets.development.json b/BlazorApp/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..6e6597c --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["D:\\CanRead\\BlazorApp\\BlazorApp\\wwwroot\\","D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\compressed\\","D:\\CanRead\\BlazorApp\\BlazorApp\\obj\\Debug\\net10.0\\scopedcss\\bundle\\","C:\\Users\\Admin\\.nuget\\packages\\microsoft.aspnetcore.app.internal.assets\\10.0.1\\_framework\\","D:\\CanRead\\BlazorApp\\BlazorApp\\"],"Root":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"app.css"},"Patterns":null},"app.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz"},"Patterns":null},"BlazorApp.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"BlazorApp.styles.css"},"Patterns":null},"BlazorApp.styles.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz"},"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"_framework":{"Children":{"blazor.server.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.server.js"},"Patterns":null},"blazor.server.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz"},"Patterns":null},"blazor.web.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"blazor.web.js"},"Patterns":null},"blazor.web.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Components":{"Children":{"Layout":{"Children":{"ReconnectModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"Components/Layout/ReconnectModal.razor.js"},"Patterns":null},"ReconnectModal.razor.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null},"bootstrap.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gh25061luz-{0}-493y06b0oq-493y06b0oq.gz"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.bundle.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.esm.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null},"bootstrap.min.js.map.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"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/BlazorApp/obj/Debug/net10.0/staticwebassets.references.upToDateCheck.txt b/BlazorApp/obj/Debug/net10.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Debug/net10.0/staticwebassets.removed.txt b/BlazorApp/obj/Debug/net10.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt b/BlazorApp/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt new file mode 100644 index 0000000..7ba18fe --- /dev/null +++ b/BlazorApp/obj/Debug/net10.0/staticwebassets.upToDateCheck.txt @@ -0,0 +1,97 @@ +wwwroot\app.css +wwwroot\favicon.png +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap.css +wwwroot\lib\bootstrap\dist\css\bootstrap.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css +wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css.map +wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css +wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map +wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js +wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map +wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js +wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map +wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js +wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js.map +wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js +wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js.map +wwwroot\lib\bootstrap\dist\js\bootstrap.js +wwwroot\lib\bootstrap\dist\js\bootstrap.js.map +wwwroot\lib\bootstrap\dist\js\bootstrap.min.js +wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map +Components\Layout\ReconnectModal.razor.js +C:\Users\Admin\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.1\build\..\_framework\blazor.web.js +C:\Users\Admin\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.1\build\..\_framework\blazor.server.js +D:\CanRead\BlazorApp\BlazorApp\wwwroot\app.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.js +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.js.map +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js +D:\CanRead\BlazorApp\BlazorApp\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map +D:\CanRead\BlazorApp\BlazorApp\Components\Layout\ReconnectModal.razor.js +C:\Users\Admin\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.1\_framework\blazor.web.js +C:\Users\Admin\.nuget\packages\microsoft.aspnetcore.app.internal.assets\10.0.1\_framework\blazor.server.js diff --git a/BlazorApp/obj/Debug/net10.0/swae.build.ex.cache b/BlazorApp/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/BlazorApp/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/BlazorApp/obj/Release/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/BlazorApp/obj/Release/net10.0/BlazorApp.AssemblyInfo.cs b/BlazorApp/obj/Release/net10.0/BlazorApp.AssemblyInfo.cs new file mode 100644 index 0000000..2c578c5 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+314a28bf8ff7028abdd8305908ee1062cbadf848")] +[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/BlazorApp/obj/Release/net10.0/BlazorApp.AssemblyInfoInputs.cache b/BlazorApp/obj/Release/net10.0/BlazorApp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a4a17c1 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5f94f2c7e5aef732ca7f4a6bcbfc02886ff4398dd4bb9afc9dc343677bf024fc diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig b/BlazorApp/obj/Release/net10.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1ee9e88 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,71 @@ +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 = BlazorApp +build_property.RootNamespace = BlazorApp +build_property.ProjectDir = C:\Users\Admin\source\repos\CanRead\BlazorApp\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\Admin\source\repos\CanRead\BlazorApp +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/App.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Can.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDYW4ucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Counter.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Error.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Home.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/NotFound.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xOb3RGb3VuZC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Pages/Weather.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Routes.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Layout/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-qgsvw684bo + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Layout/NavMenu.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = b-g8o6n169oq + +[C:/Users/Admin/source/repos/CanRead/BlazorApp/Components/Layout/ReconnectModal.razor] +build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcUmVjb25uZWN0TW9kYWwucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-pphnjiao61 diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.GlobalUsings.g.cs b/BlazorApp/obj/Release/net10.0/BlazorApp.GlobalUsings.g.cs new file mode 100644 index 0000000..69a3c68 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.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/BlazorApp/obj/Release/net10.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cache b/BlazorApp/obj/Release/net10.0/BlazorApp.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.assets.cache b/BlazorApp/obj/Release/net10.0/BlazorApp.assets.cache new file mode 100644 index 0000000..7523baa Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/BlazorApp.assets.cache differ diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.AssemblyReference.cache b/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fa38319 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.AssemblyReference.cache differ diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.CoreCompileInputs.cache b/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..901ac45 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1d2aaa3dad99d43aa72fff08d0b37a2a739f9f42cf7d25c0befd8ab29706c9aa diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.FileListAbsolute.txt b/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..0bceb07 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.FileListAbsolute.txt @@ -0,0 +1,91 @@ +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\appsettings.Development.json +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\appsettings.json +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\BlazorApp.staticwebassets.runtime.json +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\BlazorApp.staticwebassets.endpoints.json +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\BlazorApp.exe +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\BlazorApp.deps.json +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\BlazorApp.runtimeconfig.json +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\BlazorApp.pdb +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\PCANBasic.NET.dll +D:\CanRead\BlazorApp\BlazorApp\bin\Release\net10.0\SocketCANSharp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\EmbeddedAttribute.cs +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\ValidatableTypeAttribute.cs +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.csproj.AssemblyReference.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\rpswa.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.GeneratedMSBuildEditorConfig.editorconfig +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.AssemblyInfoInputs.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.AssemblyInfo.cs +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.csproj.CoreCompileInputs.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.MvcApplicationPartsAssemblyInfo.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\rjimswa.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\rjsmrazor.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\rjsmcshtml.dswa.cache.json +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\scopedcss\Components\Layout\MainLayout.razor.rz.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\scopedcss\Components\Layout\NavMenu.razor.rz.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\scopedcss\Components\Layout\ReconnectModal.razor.rz.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\scopedcss\bundle\BlazorApp.styles.css +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\scopedcss\projectbundle\BlazorApp.bundle.scp.css +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\hh92lrx13d-{0}-ag9i8ft9fn-ag9i8ft9fn.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\v7vyzcc6qh-{0}-bqjiyaj88i-bqjiyaj88i.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\m5e6rnmcep-{0}-c2jlpeoesf-c2jlpeoesf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\o0q64zz2g2-{0}-erw9l3u2r3-erw9l3u2r3.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\7joa6vf0w2-{0}-aexeepp0ev-aexeepp0ev.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\taqldvnaul-{0}-d7shbmvgxk-d7shbmvgxk.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\jfzlrv9cgx-{0}-ausgxo2sd3-ausgxo2sd3.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\rogc4sk0pw-{0}-k8d9w2qqmf-k8d9w2qqmf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\9wb38qhjvq-{0}-cosvhxvwiu-cosvhxvwiu.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\e0tkuniv2q-{0}-ub07r2b239-ub07r2b239.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\5exm1mo63l-{0}-fvhpjtyr6v-fvhpjtyr6v.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\sgf5lx3sbn-{0}-b7pk76d08c-b7pk76d08c.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\xifcgn9ief-{0}-fsbi9cje9m-fsbi9cje9m.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\xcqk6qv13p-{0}-rzd6atqjts-rzd6atqjts.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\65ii6i50cu-{0}-ee0r1s7dh0-ee0r1s7dh0.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\8ny1ssfslj-{0}-dxx9fxp4il-dxx9fxp4il.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\loo7f5x1gx-{0}-jd9uben2k1-jd9uben2k1.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\p45ce5yffh-{0}-khv3u5hwcm-khv3u5hwcm.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\0546dfdd6f-{0}-r4e9w2rdcm-r4e9w2rdcm.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\03xqw0swdg-{0}-lcd1t2u6c8-lcd1t2u6c8.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\lf383621gq-{0}-c2oey78nd0-c2oey78nd0.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\dcz3aqb7og-{0}-tdbxkamptv-tdbxkamptv.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\oej83ydp7q-{0}-j5mq2jizvt-j5mq2jizvt.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\n5un2q0rmp-{0}-06098lyss8-06098lyss8.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\72hk1wsa3c-{0}-nvvlpmu67g-nvvlpmu67g.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\jt3e1rdii1-{0}-s35ty4nyc5-s35ty4nyc5.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\3til2bm5ay-{0}-pj5nd1wqec-pj5nd1wqec.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\kdgbnj3stq-{0}-46ein0sx1k-46ein0sx1k.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\pgyksi01id-{0}-v0zj4ognzu-v0zj4ognzu.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\k2mw846ued-{0}-37tfw0ft22-37tfw0ft22.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\hevz5itu9o-{0}-hrwsygsryq-hrwsygsryq.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\1qbqjgk7wr-{0}-pk9g2wxc8p-pk9g2wxc8p.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\kay38lw82v-{0}-ft3s53vfgj-ft3s53vfgj.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\vrc98ic1o2-{0}-6cfz1n2cew-6cfz1n2cew.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\h56f1aupc7-{0}-6pdc2jztkx-6pdc2jztkx.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\gh25061luz-{0}-493y06b0oq-493y06b0oq.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\byvyapvtmi-{0}-iovd86k7lj-iovd86k7lj.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\lxae500s9q-{0}-vr1egmr9el-vr1egmr9el.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\5whq523p0y-{0}-kbrnm935zg-kbrnm935zg.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\08cqgvfzcy-{0}-jj8uyg4cgr-jj8uyg4cgr.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\zp2adb4uhm-{0}-y7v9cxd14o-y7v9cxd14o.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\onq1f5nzz4-{0}-notf2xhcfb-notf2xhcfb.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\mxp9w50l4b-{0}-h1s4sie4z3-h1s4sie4z3.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\l2mhd45r4z-{0}-63fj8s7r0e-63fj8s7r0e.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\i0oilot2q1-{0}-0j3bgjxly4-0j3bgjxly4.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\hsa0fwp5ls-{0}-13ja33weya-13ja33weya.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\0txged01c1-{0}-wmp8iwak4q-wmp8iwak4q.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\e2p7e3doxt-{0}-2lgipwaf5j-2lgipwaf5j.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\8v4adbxxmx-{0}-2mc2qwa0tf-2mc2qwa0tf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\compressed\rrzzv9ip5o-{0}-2mc2qwa0tf-2mc2qwa0tf.gz +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\staticwebassets.build.json +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\staticwebassets.build.json.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\staticwebassets.development.json +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\staticwebassets.build.endpoints.json +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\swae.build.ex.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.csproj.Up2Date +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\refint\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.pdb +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.genruntimeconfig.cache +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\ref\BlazorApp.dll +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\staticwebassets.upToDateCheck.txt +D:\CanRead\BlazorApp\BlazorApp\obj\Release\net10.0\BlazorApp.sourcelink.json diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.Up2Date b/BlazorApp/obj/Release/net10.0/BlazorApp.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.deps.json b/BlazorApp/obj/Release/net10.0/BlazorApp.deps.json new file mode 100644 index 0000000..3b97c58 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.deps.json @@ -0,0 +1,57 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "BlazorApp/1.0.0": { + "dependencies": { + "Peak.PCANBasic.NET": "4.10.1.968", + "SocketCANSharp": "0.13.0" + }, + "runtime": { + "BlazorApp.dll": {} + } + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "runtime": { + "lib/netstandard2.0/PCANBasic.NET.dll": { + "assemblyVersion": "4.10.1.968", + "fileVersion": "4.10.1.968" + } + } + }, + "SocketCANSharp/0.13.0": { + "runtime": { + "lib/netstandard2.0/SocketCANSharp.dll": { + "assemblyVersion": "0.13.0.0", + "fileVersion": "0.13.0.0" + } + } + } + } + }, + "libraries": { + "BlazorApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUxW8dhaIB+x7XFcpepad1DaD1N5a9l6qB2cyOgDCv7M+SmF87hOIK/EsT42Th92exA02PfCr6+ilnZ0XYeyrg==", + "path": "peak.pcanbasic.net/4.10.1.968", + "hashPath": "peak.pcanbasic.net.4.10.1.968.nupkg.sha512" + }, + "SocketCANSharp/0.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-71mLS40IMpnyWeKf0zeWKGlgO6lkll36DdhKmsJ9z/SGnENcq/8XhOYFgLKJ8Wbs2a4WaFelmlz8cKBU82lWyA==", + "path": "socketcansharp/0.13.0", + "hashPath": "socketcansharp.0.13.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.dll b/BlazorApp/obj/Release/net10.0/BlazorApp.dll new file mode 100644 index 0000000..7b92ca8 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/BlazorApp.dll differ diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.genpublishdeps.cache b/BlazorApp/obj/Release/net10.0/BlazorApp.genpublishdeps.cache new file mode 100644 index 0000000..4d76498 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.genpublishdeps.cache @@ -0,0 +1 @@ +647f41f2eb9c9b1414fe0222bdff06699ee5028c482172825dd8637d0cb8343a diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.genruntimeconfig.cache b/BlazorApp/obj/Release/net10.0/BlazorApp.genruntimeconfig.cache new file mode 100644 index 0000000..5975489 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.genruntimeconfig.cache @@ -0,0 +1 @@ +1bb23fa2ba4cec225da0e5302ae45f7e3ddf44e9a475a17fc494c8e5e482552a diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.pdb b/BlazorApp/obj/Release/net10.0/BlazorApp.pdb new file mode 100644 index 0000000..eee84e1 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/BlazorApp.pdb differ diff --git a/BlazorApp/obj/Release/net10.0/BlazorApp.sourcelink.json b/BlazorApp/obj/Release/net10.0/BlazorApp.sourcelink.json new file mode 100644 index 0000000..f8139ad --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/BlazorApp.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"D:\\CanRead\\BlazorApp\\*":"https://raw.githubusercontent.com/DTQuan1212/BlazorApp/96751a2cf1944c4425809e0d870e8df75a4252da/*"}} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/EmbeddedAttribute.cs b/BlazorApp/obj/Release/net10.0/EmbeddedAttribute.cs new file mode 100644 index 0000000..1931537 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/EmbeddedAttribute.cs @@ -0,0 +1,7 @@ +// +namespace Microsoft.CodeAnalysis +{ +internal sealed partial class EmbeddedAttribute : global::System.Attribute +{ +} +} diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.deps.json b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.deps.json new file mode 100644 index 0000000..3b97c58 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.deps.json @@ -0,0 +1,57 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "BlazorApp/1.0.0": { + "dependencies": { + "Peak.PCANBasic.NET": "4.10.1.968", + "SocketCANSharp": "0.13.0" + }, + "runtime": { + "BlazorApp.dll": {} + } + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "runtime": { + "lib/netstandard2.0/PCANBasic.NET.dll": { + "assemblyVersion": "4.10.1.968", + "fileVersion": "4.10.1.968" + } + } + }, + "SocketCANSharp/0.13.0": { + "runtime": { + "lib/netstandard2.0/SocketCANSharp.dll": { + "assemblyVersion": "0.13.0.0", + "fileVersion": "0.13.0.0" + } + } + } + } + }, + "libraries": { + "BlazorApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Peak.PCANBasic.NET/4.10.1.968": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sUxW8dhaIB+x7XFcpepad1DaD1N5a9l6qB2cyOgDCv7M+SmF87hOIK/EsT42Th92exA02PfCr6+ilnZ0XYeyrg==", + "path": "peak.pcanbasic.net/4.10.1.968", + "hashPath": "peak.pcanbasic.net.4.10.1.968.nupkg.sha512" + }, + "SocketCANSharp/0.13.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-71mLS40IMpnyWeKf0zeWKGlgO6lkll36DdhKmsJ9z/SGnENcq/8XhOYFgLKJ8Wbs2a4WaFelmlz8cKBU82lWyA==", + "path": "socketcansharp/0.13.0", + "hashPath": "socketcansharp.0.13.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.dll b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.dll new file mode 100644 index 0000000..dbd4543 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.dll differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.exe b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.exe new file mode 100644 index 0000000..2e95150 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.exe differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.pdb b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.pdb new file mode 100644 index 0000000..d43c79e Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.pdb differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.runtimeconfig.json b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.runtimeconfig.json new file mode 100644 index 0000000..91bec3c --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.runtimeconfig.json @@ -0,0 +1,21 @@ +{ + "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.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException": true + } + } +} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.staticwebassets.endpoints.json b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.staticwebassets.endpoints.json new file mode 100644 index 0000000..80b666a --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/BlazorApp.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Publish","Endpoints":[{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000468823254"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"label","Value":"BlazorApp.styles.css"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css.br","AssetFile":"BlazorApp.styles.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ="},{"Name":"label","Value":"BlazorApp.styles.css.br"}]},{"Route":"BlazorApp.2mc2qwa0tf.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2mc2qwa0tf"},{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="},{"Name":"label","Value":"BlazorApp.styles.css.gz"}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000401767778"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000468823254"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="},{"Name":"original-resource","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""}]},{"Route":"BlazorApp.styles.css","AssetFile":"BlazorApp.styles.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10327"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WiYAp3DPfWIvQ7F71VoEb/xgAOPDzWbacS4wj6sqb/I="}]},{"Route":"BlazorApp.styles.css.br","AssetFile":"BlazorApp.styles.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2132"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7MfumtIdJkVZyirvfwDsnhrwbDmRpkfA1KXuC3DgukQ="}]},{"Route":"BlazorApp.styles.css.gz","AssetFile":"BlazorApp.styles.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2488"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HrYQG+kvC7F845+wxz4XV4/HlxiAXT/2yeNDykkRiMg="}]},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 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","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.001801801802"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00: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":"original-resource","Value":"\"4zGYCWZ4pfXdYacNs7XaH1BXGvludoT6JCkX9NZucgI=\""},{"Name":"script-type","Value":"module"}]},{"Route":"Components/Layout/ReconnectModal.13ja33weya.razor.js.br","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc="},{"Name":"label","Value":"Components/Layout/ReconnectModal.razor.js.br"}]},{"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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"13ja33weya"},{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="},{"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":"Fri, 09 Jan 2026 07:54:51 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.001383125864"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 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","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.001801801802"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 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.br","AssetFile":"Components/Layout/ReconnectModal.razor.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"554"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xr6qXBVHxObx6Sz2BKbcCLBiMx2R6fl8vNJXpOW7eKc="}]},{"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":"722"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vUOSO6PRCY2+9UwmTgH5Gvp0QbM17J9dFUHFjM04yEo="}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js","AssetFile":"_framework/blazor.server.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000025951782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"label","Value":"_framework/blazor.server.js"},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.2lgipwaf5j.js.br","AssetFile":"_framework/blazor.server.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A="},{"Name":"label","Value":"_framework/blazor.server.js.br"}]},{"Route":"_framework/blazor.server.2lgipwaf5j.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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"2lgipwaf5j"},{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="},{"Name":"label","Value":"_framework/blazor.server.js.gz"}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"164726"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022565213"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.js","AssetFile":"_framework/blazor.server.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000025951782"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA="},{"Name":"original-resource","Value":"\"ikIAiRRJtG7omV1zRJtggkSaSfVX48J+eXsScv8i0PA=\""}]},{"Route":"_framework/blazor.server.js.br","AssetFile":"_framework/blazor.server.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"38532"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hLhkEylgJaceYuFPraI7wLxD622LFCayPHD3fZJyr9A="}]},{"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":"44315"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8KSpCP3NlF/HzY0B0UkzvQOlNpdvNdk3iXjMkLxZnx8="}]},{"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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.js","AssetFile":"_framework/blazor.web.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021031379"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.js.br","AssetFile":"_framework/blazor.web.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo="}]},{"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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""},{"Name":"Last-Modified","Value":"Wed, 19 Nov 2025 16:19:10 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"_framework/blazor.web.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018129736"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js","AssetFile":"_framework/blazor.web.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021031379"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI="},{"Name":"label","Value":"_framework/blazor.web.js"},{"Name":"original-resource","Value":"\"yKUXnp3K8asFK0Jc5RFQWhaDi3VFeTk84OBOaXw4mBI=\""}]},{"Route":"_framework/blazor.web.wmp8iwak4q.js.br","AssetFile":"_framework/blazor.web.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47547"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-LAQMuqW7s3/2oJ59KWbfenEvLJJr8gM7IxtzLaChpAo="},{"Name":"label","Value":"_framework/blazor.web.js.br"}]},{"Route":"_framework/blazor.web.wmp8iwak4q.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":"55157"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"wmp8iwak4q"},{"Name":"integrity","Value":"sha256-6G0ZQIyuCTXlfY6wfJwPfMnQh/cvkU+IkM7bR54BbxI="},{"Name":"label","Value":"_framework/blazor.web.js.gz"}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000723589001"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.ag9i8ft9fn.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"label","Value":"app.css"}]},{"Route":"app.ag9i8ft9fn.css.br","AssetFile":"app.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk="},{"Name":"label","Value":"app.css.br"}]},{"Route":"app.ag9i8ft9fn.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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ag9i8ft9fn"},{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="},{"Name":"label","Value":"app.css.gz"}]},{"Route":"app.css","AssetFile":"app.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000630914826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.css","AssetFile":"app.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000723589001"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="},{"Name":"original-resource","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""}]},{"Route":"app.css","AssetFile":"app.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3014"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 08:08:25 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-WrSpQEvKbF8XInVKuDDk9N/vhVJBryPNhJqstL4fZL8="}]},{"Route":"app.css.br","AssetFile":"app.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"1381"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vk+onxF5aaPwUJT1Nd3qcFjoVtqv/cIV27I6OUz2pWk="}]},{"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":"1584"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-76Fg+IKUOAgRMCNsDD03d5slZL8Zk6KRgZvvEmzQU0Q="}]},{"Route":"favicon.ifv42okdf2.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"favicon.png"}]},{"Route":"favicon.png","AssetFile":"favicon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000273597811"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.bqjiyaj88i.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bqjiyaj88i"},{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000273597811"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144592250"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="},{"Name":"original-resource","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70329"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Yy5/hBqRmmU2MJ1TKwP2aXoTO6+OjzrLmJIsC2Wy4H8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3654"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iNjJYYqZ8TeDow19ayDL9zy9d6f0gXXf97KjxyDSNII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042911088"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.c2jlpeoesf.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2jlpeoesf"},{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6915"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-HQp0c6N8q5wOxo27/7+5nSrp8SBfCepJdWIMB3pb5bE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030228832"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042911088"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="},{"Name":"original-resource","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203221"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xAT+n25FE5hvOjj2fG4YdOwr1bl4IlAJBNg6PbhLT2E="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23303"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fk0ecLbCwi4mEGluksefL+VKlUscvrukrqtYrtg7Ruc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33080"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-keojCSbIk+KcHuoejTbPFk8zgraA9s/7WmedJipnoMM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000354735722"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000114757861"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.aexeepp0ev.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aexeepp0ev"},{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000071058054"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000114757861"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="},{"Name":"original-resource","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"115986"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kgL+xwVmM8IOs15lnoHt9daR2LRMiBG/cYgUPcKQOY4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8713"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wp0HmrJWNOyNJlAC2GqIe0FOJvbKLLWTLjIb39FW6Ow="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14072"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1/7f+GraCXppQxdIoS5cuJ0z+sz2LI680XxYJg3fcdM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163853842"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000354735722"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},{"Name":"original-resource","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51795"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-5nDHMGiyfZHl3UXePuhLDQR9ncPfBR1HJeZLXyJNV24="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2818"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-YxJAon5IAzBzJ//ItO7LPJcip05My/S8eZj5Lt4GdBM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.min.erw9l3u2r3.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6102"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"erw9l3u2r3"},{"Name":"integrity","Value":"sha256-6OfodiC592J173EssQMUTEfylPvm7++5l9PRY+7T5Uo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000287356322"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042709490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.ausgxo2sd3.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ausgxo2sd3"},{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000030246204"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042709490"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="},{"Name":"original-resource","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"203225"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/siQUA8yX830j+cL4amKHY3yBtn3n8z3Eg+VZ15f90k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23413"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7tspCzPFw4MaPldF2WyRfrkfHLh+cokOHkktXvG0hbc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33061"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ryK/tFqrYO6GpAIb5XFeLy8cUXDiklFAEkL+JelQZRo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000287356322"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000144529556"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},{"Name":"original-resource","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"70403"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-CZxoF8zjaLlyVkcvVCDlc8CeQR1w1RMrvgYx30cs8kM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"3479"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-gG/k+NavGek8bdF4qjhyTaN9xzzGPs7v719f26s7shE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.d7shbmvgxk.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6918"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"d7shbmvgxk"},{"Name":"integrity","Value":"sha256-+UkMsfq0zPH03cQtfw9papLT2sHleN3bw7S1s5iLonY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000362844702"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000113843352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.cosvhxvwiu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"cosvhxvwiu"},{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000070952178"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000113843352"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="},{"Name":"original-resource","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"116063"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7GdOlw7U/wgyaeUtFmxPz5/MphdvVSPtVOOlTn9c33Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"8783"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2grvDtrYTaZLpudNhomJMSjmZ1pv2TF3+apBe90pl4A="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"14093"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-XVqmPhc00T/7zYDUfSy4bYaZ4YjTbapktP6tFnzH6xM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000362844702"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000163800164"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},{"Name":"original-resource","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51870"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-vMxTcvkC4Ly7LiAT3G8yEy9EpTr7Fge4SczWp07/p3k="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2755"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-sktlmY/vUAITDRWQl7MzHlZO/u8af+g3esxDpzCIQNY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.k8d9w2qqmf.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"6104"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"k8d9w2qqmf"},{"Name":"integrity","Value":"sha256-Xll87KRp2km7kw+kDSFiBiyUQnZ7QCVIb8yJtRDXckQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349283968"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046864748"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.fvhpjtyr6v.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fvhpjtyr6v"},{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038887809"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046864748"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="},{"Name":"original-resource","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129371"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RXJ/QZiBfHXoPtXR2EgC+bFo2pe3GtbZO722RtiLGzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21337"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-buhRg784bnM81dpoqyy280j6mz8sEvQ1V9FXO0Uz1BQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25714"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fzLlXEmw9871JGb59kzfItifyrM9MgjHNQirf4lIS64="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000361925443"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.b7pk76d08c.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"b7pk76d08c"},{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000361925443"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000312500000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="},{"Name":"original-resource","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10126"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l8vt5oozv958eMd9TFsPAWgl9JJK9YKfbVSs8mchQ84="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yIToTRw1Rp1SuRc8LrBjS9+iuZXxEldkrXmN2p6fVOo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000092481273"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.fsbi9cje9m.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"fsbi9cje9m"},{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3199"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-z14pI3bmpzGTIVaJu6aKOcry1zSAu/H44LHt9J3bXFM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000092481273"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000079560824"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="},{"Name":"original-resource","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"51369"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0eqVT62kqRLJh9oTqLeIH4UnQskqVjib8hl2fXxl4lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10812"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qJdQ4e5UyWKFP89uE9U8ATr2hWb+Mrz969MpBd4nW/Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12568"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ADH59/NtYFvapbe8WFHRcZlFJ2Si4p3FnbxP5fFT5lg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046844990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.ee0r1s7dh0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ee0r1s7dh0"},{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000038869670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000046844990"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="},{"Name":"original-resource","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"129386"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OoQVwh7Arp7bVoK2ZiTx2S//KrnPrSPzPZ93CqCMhe8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21346"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kt1Zd5QaxfZJUSDdGAVkEE9Q649Kl+6hhE5bp189LvI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"25726"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PBumXrpJefIUX366kZ07GYowOsT9YFX4xEFYFHevQag="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000359066427"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000091499680"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.jd9uben2k1.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jd9uben2k1"},{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000066538026"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000091499680"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="},{"Name":"original-resource","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"63943"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-910zw+rMdcg0Ls48ATp65vEn8rd5HvPxOKm2x3/CBII="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"10928"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-s4ox5h7G4/bmcMC7jLxCFM6RhoGxwm1wriXWUCm4Cec="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"15028"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J1KmNvA0YsTrxABdpOt20g2Pc9ye2G9nKQ+doaPxfWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000309405941"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000359066427"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},{"Name":"original-resource","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"10198"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-/8jh8hcEMFKyS6goWqnNu7t3EzZPCGdQZgO6sCkI8tI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2784"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-w2IxMcU1HIMzrj06d8re0Smuhfr7EX1EpRTTYj+yyTQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.dxx9fxp4il.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3231"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"dxx9fxp4il"},{"Name":"integrity","Value":"sha256-u85nx859JKxhSe8TTSe97CuakJmuU36EC4JdxkCZL3g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349162011"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000297176820"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},{"Name":"original-resource","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12058"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-V8psnHoJS/MPlCXWwc/J3tGtp9c3gGFRmqsIQgpn+Gg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2863"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-Vjfl7U/p1kpsaO3GKidcHmEBtG+xqrxQs3O1D1Cr244="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.rzd6atqjts.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3364"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"rzd6atqjts"},{"Name":"integrity","Value":"sha256-oSfmOJQjIULAN8mPr84YlRct/JVoFbWAn9Y7IWzBuoc="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000296208531"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000349283968"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"},{"Name":"original-resource","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"12065"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-lo9YI82OF03vojdu+XOR3+DRrLIpMhpzZNmHbM5CDMA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"2862"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-Tud4TfGNPGqF0u4FvfQaolvdlC7/B0sIxEnFsh4G56U="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-reboot.ub07r2b239.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"3375"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ub07r2b239"},{"Name":"integrity","Value":"sha256-/Cti7KtgK7n0FoWSWRMvmhTwGSxieEUp+Ao+6Xxnmug="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-reboot.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128386186"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031925422"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022590191"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031925422"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},{"Name":"original-resource","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267535"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-Nfjrc4Ur9Fv2oBEswQWIyBnNDP99q+LhL+z9553O0cY="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31322"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-inIBG7FaPuvZJde078ruU7l7pNPA1ImQodz5RRecoCw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.css.r4e9w2rdcm.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44266"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"r4e9w2rdcm"},{"Name":"integrity","Value":"sha256-JhJG+P11KpccX3eLLCfr9IvrrIGljBXVVu8i06COWfo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082453826"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128386186"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"},{"Name":"original-resource","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107823"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-2BubgNUPlQSF/0wLFcRXQ/Yjzk9vsUbDAeK2QM+h+yo="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7788"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-yTn0kALArJ4vW8AvLSONXCUb6JlqnJlzGEk/seQfAnE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.khv3u5hwcm.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"khv3u5hwcm"},{"Name":"integrity","Value":"sha256-9EqjQR8ugEerwGk0t0elN3RQ+XHT25kPo1+/yYXwvNM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142186833"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057683433"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.c2oey78nd0.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"c2oey78nd0"},{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040836328"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057683433"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="},{"Name":"original-resource","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180381"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rHDmip4JZzuaGOcSQ1QSQrIbG0Eb3Zja9whqSF1zYIU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17335"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:13 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Q3rNlFCfuKb3GWx2lT/Gq+pJ5w9ocEEP48FrXY6EZ+c="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24487"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oCsmmiBhwTjmHD8BM0Q5rOz0kfUetk7G5Eydczr8npA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089686099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142186833"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},{"Name":"original-resource","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85352"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-KyE9xbKO9CuYx0HXpIKgsWIvXkAfITtiQ172j26wmRs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7032"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-QLbanINXIIMBTyFYmTauR7H3nYLk7DYaNxjoUGQ+UzQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.min.lcd1t2u6c8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11149"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lcd1t2u6c8"},{"Name":"integrity","Value":"sha256-LPVzscuhkQC3vZzaHKyyJLBxtZ0JDszgPmlT3zj1wGg="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128816179"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031985670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.j5mq2jizvt.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"j5mq2jizvt"},{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022605000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000031985670"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="},{"Name":"original-resource","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"267476"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-p0BVq5Ve/dohBIdfbrZsoQNu02JSsKh1g0wbyiQiUaU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"31263"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JCRrHHwOEe5WjPoqQF4paCf/5UNZnos7WY68u8j/AfM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44237"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tYXT5KEqImURIzC3Qanl3vg3XPSckCiDY2iFihvBz4w="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142348754"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.06098lyss8.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"06098lyss8"},{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000089863408"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000142348754"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="},{"Name":"original-resource","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"85281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GAUum6FjwQ8HrXGaoFRnHTqQQLpljXGavT7mBX8E9qU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7024"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-J0BMLkGvpJJB3jj0ivK5zuMBpSqLvCp/gVEStR6pJVw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"11127"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QDcr93RhSeRIcvSG2UO4XpXn7SmN9PibCcICeplm1tk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057806810"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000040888089"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000057806810"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},{"Name":"original-resource","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"180217"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-o8XK32mcY/FfcOQ1D2HJvVuZ0YTXSURZDLXCK0fnQeA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"17298"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-xRVe30rGmEoq5KHR3mhIspcojKLn04h6DHo7PbvhyzE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.nvvlpmu67g.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"24456"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"nvvlpmu67g"},{"Name":"integrity","Value":"sha256-cBDhSnwBZjhD+2ai7wNkh+CWcMrzxwfOe6IVNDuakD4="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000082850041"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000128816179"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},{"Name":"original-resource","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"107691"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-H6wkBbSwjua2veJoThJo4uy161jp+DOiZTloUlcZ6qQ="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"7762"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-zYyp+GmLNtR96oGns48v4pvaQ9Ov9swxsTYTn40pB9o="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.tdbxkamptv.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"12069"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"tdbxkamptv"},{"Name":"integrity","Value":"sha256-49exWGtFTeHrxPgcV2SALyeXqbJ0Gx2BAW7ghwTbDHs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000040806333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011909724"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008702993"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011909724"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"},{"Name":"original-resource","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679755"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-KzNVR3p7UZGba94dnCtlc6jXjK5urSPiZ/eNnKTmDkw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83964"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-lD7ycx0CmdVZwWWgxMHdGkgXha1rYD7haP1SeluaqgA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.css.pj5nd1wqec.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114902"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pj5nd1wqec"},{"Name":"integrity","Value":"sha256-pOh8WLH4j3VtIjwkYu8FxMwfZXN1u9bs0TmE+R/LeKU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000044033465"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.46ein0sx1k.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"46ein0sx1k"},{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032134709"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000044033465"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="},{"Name":"original-resource","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232803"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22709"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-iUX9PEIriGTvoYV9dhYXiB7J7iwdEezHJZhdyJmmnDU="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31118"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-zrRIXAC8ugCIlsRMgBBjTa8xli0BiiAqT375rZab79Y="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014509997"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010874175"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014509997"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"},{"Name":"original-resource","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589892"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-8SM4U2NQpCLGTQLW5D/x3qSTwxVq2CP+GXYc3V1WwFs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"68917"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-tWlBcVr3HcLtS4xscbiHVAMc1ilK1LzW39xC1/lMXY8="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.min.css.v0zj4ognzu.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91960"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"v0zj4ognzu"},{"Name":"integrity","Value":"sha256-Ez3ceWLr2D4WzWEtd0AgNaoRd/oY3XS1P5pFtgjHfAs="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041022275"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.37tfw0ft22.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"37tfw0ft22"},{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029969731"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041022275"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="},{"Name":"original-resource","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"280259"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5E4XIj1p1kNnDi0x1teX9RXoh1/FNlPvCML9YmRh2Q="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24376"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j3mmVVI4y7349buEHmDDDAOh7m9ANkVfal3rz/1/PdM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33366"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h+uVSG7EhchzF96LorZkFbGFBO8oQowufr5PhxsGq8M="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011906746"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.hrwsygsryq.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hrwsygsryq"},{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000008704887"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000011906746"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="},{"Name":"original-resource","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"679615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3bYWUiiVYMZfv2wq5JnXIsHlQKgSKs/VcRivgjgZ1ho="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"83985"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-cxXdEieJo6iOCYsKP/5OZvw7tIbHPoHwhAW5m+jiC3g="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"114877"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YedRlLwXS/p1OuS/d0RjDFf5lQsoglvovzJIcXC8mWM="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000043894303"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014460480"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.ft3s53vfgj.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ft3s53vfgj"},{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010885302"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000014460480"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="},{"Name":"original-resource","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"589087"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-rTzXlnepcb/vgFAiB+U7ODQAfOlJLfM3gY6IU7eIANk="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"69153"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nHsYxKCJB+7BkpUN4JpUape/9guW4q8cyBEUkNztpdw="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"91866"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4gJzy0olXjj0z70VKojvdJzPHOLLNp9HrIQJNzkwxWE="}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000032115101"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000043894303"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},{"Name":"original-resource","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"232911"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-h5lE7Nm8SkeIpBHHYxN99spP3VuGFKl5NZgsocil7zk="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"22781"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:16 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-Y8ZIRF9+Hx/J+mq7PQC8OfSkJLRhYGXIMFUfWqMO9fI="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.rtl.min.pk9g2wxc8p.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"31137"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"pk9g2wxc8p"},{"Name":"integrity","Value":"sha256-5VQx+pcREAWRC7fSQ1OVsJtpTGF7SJ83RS8p2rovHHw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.gz"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000029869470"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000040806333"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"},{"Name":"original-resource","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css","AssetFile":"lib/bootstrap/dist/css/bootstrap.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"281046"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-GKEF18s44B5e0MolXAkpkqLiEbOVlKf6VyYr/G/E6pw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.br","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24505"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-D3JJS+d/JxfT4GAHCbexuXnrO/p2MuEKhVFWUUZczzA="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.br"}]},{"Route":"lib/bootstrap/dist/css/bootstrap.s35ty4nyc5.css.gz","AssetFile":"lib/bootstrap/dist/css/bootstrap.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"33478"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"s35ty4nyc5"},{"Name":"integrity","Value":"sha256-MfXRRxefGD0S0k5f3gXwZNQW7ELiStY01dZj+IbLlaw="},{"Name":"label","Value":"lib/bootstrap/dist/css/bootstrap.css.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000027580120"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.6cfz1n2cew.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6cfz1n2cew"},{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000027580120"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000022491116"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="},{"Name":"original-resource","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"207819"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mkoRoV24jV+rCPWcHDR5awPx8VuzzJKN0ibhxZ9/WaM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013245209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.6pdc2jztkx.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"6pdc2jztkx"},{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"36257"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-aSsLWOXYJa9+EwsvTx6YBSRWbNocDmYw0nJMKeIcN8I="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"44461"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fd462fjZQtrrvL/sHbIIZF7ktZgtHombUabahz+Nhoo="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000010836819"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013245209"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="},{"Name":"original-resource","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"444579"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Wq4aWW1rQdJ+6oAgy1JQc9IBjHL9T3MKfXTBNqOv02c="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"75498"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-il0bdNXwWu6r3zOdaaFqCj0PLSgRLSUMfJ8PDcIpNf8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"92277"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fgl+pethjpTJQrRxrFinuKNP9hP56Cpi71nXoWFk1oE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000047234424"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.493y06b0oq.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"493y06b0oq"},{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000042016807"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000047234424"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="},{"Name":"original-resource","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"80721"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CDOy6cOibCWEdsRiZuaHf8dSGGJRYuBGC+mjoJimHGw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"21170"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-/yVkziZaVWomlWom8NuisU+Jdi1eMoEcsS4pYCcLq3A="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"23799"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZ0MSDfNrGl5pbF5ppDikD9YeYfOenEETYBSBemyReU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013771070"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.iovd86k7lj.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"iovd86k7lj"},{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000011558155"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000013771070"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="},{"Name":"original-resource","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"332090"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Xj4HYxZBQ7qqHKBwa2EAugRS+RHWzpcTtI49vgezUSU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"72615"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ktB5SmSNBKgCd5O2lqOYyX9n1UtcgkJkgiPCnoz/+zQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"86518"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YNK7tH4KLEhmt17m2X41sl74ZCDUilGpyhRBJKwG0P4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042172740"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018929714"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.kbrnm935zg.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"kbrnm935zg"},{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015567837"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018929714"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="},{"Name":"original-resource","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"305438"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EPRLgpqWkahLxEn6CUjdM76RIYIw1xdHwTbeHssuj/4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"52826"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hGpu+Y4/CwVBc3aoCIPmjv2aflR98G1uqdcuvbflWmc="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64234"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-oglZ6aWY/UXq+QsVhwhOwfIZbgvz7Dvjg/GfXmQsBVM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000061538462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.jj8uyg4cgr.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"jj8uyg4cgr"},{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000053928706"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000061538462"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="},{"Name":"original-resource","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"73935"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QZdFT1ZNdly4rmgUBtXmXFS9BU1FTa+sPe6h794sFRQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"16249"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-j5zm+5x4zot82Elh+bRc8L5RtDRdtBltd6IsZMOnLHs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"18542"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Ng/NTAPb2HvIa++U+TsQnZ6UYlXnzyFuh5Df7vHJZgU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000020944163"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000020944163"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000017734899"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},{"Name":"original-resource","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"222455"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-Tsbv8z6VlNgVET8xvz/yLo/v5iJHTAj2J4hkhjP1rHM="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47745"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-SvuO6qpu7hnfjSLNmPNWjE6F/PlNjBxXtwlPxtetqTk="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.min.js.y7v9cxd14o.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"56385"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"y7v9cxd14o"},{"Name":"integrity","Value":"sha256-9Hc7N6ug4kO+ZAzS1pFxw7Hbp+FZaCKMnDLRAv1J/zw="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000034617648"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000042172740"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"},{"Name":"original-resource","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"135829"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-exiXZNJDwucXfuje3CbXPbuS6+Ery3z9sP+pgmvh8nA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"23711"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-Vqm5W0+cNePGhn1zTb3ddedGc8qlnU1lxhPFT0ok/8k="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.esm.vr1egmr9el.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.esm.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"28886"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vr1egmr9el"},{"Name":"integrity","Value":"sha256-K+JV1bWtCSH6pUbk4PUJUao1Gc0EagazN8O9VnhFaPE="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.esm.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041342815"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018857251"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.h1s4sie4z3.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"h1s4sie4z3"},{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000015506040"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000018857251"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="},{"Name":"original-resource","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"306606"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9Wr7Hxe8gCJDoIHh5xP29ldXvC3kN2GkifQj9c8vYx4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"53029"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:15 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-yhbRnD6zgVGSaVy3SO4IKsq2JKl6nusy+VyZtetr7To="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"64490"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OeWySIbjCJXM4ZgVwiGmsjpLeFsT+qOpONsDqh8xk5M="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000067444527"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.63fj8s7r0e.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"63fj8s7r0e"},{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000060342747"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000067444527"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="},{"Name":"original-resource","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"60635"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3gQJhtmj7YnV1fmtbVcnAV6eI4ws0Tr48bVZCThtCGQ="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021258955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.0j3bgjxly4.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0j3bgjxly4"},{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"14826"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OeZqw5Et4kJGAmTUZJl1Y8Fp2dok17tdR0POZHZf3WU="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"16571"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YQ6ZOC5+9dlRHEgMrLJKheWx2C2Xk7AL5Hy36EOfqq8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000018009905"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000021258955"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="},{"Name":"original-resource","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"220561"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ZI01e/ns473GKvACG4McggJdxvFfFIw4xspwQiG8Ye4="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"47038"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Y+N/SYeapMdW969cZk44/NuRRWxODSYX0xO6z974dQA="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.min.js.map.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"55524"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\"EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EImWkSMXEOh40HFlhmq90VTXlOCYqWVzWn4vPxUhiA8="}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000033717715"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[{"Name":"Content-Encoding","Value":"br","Quality":"0.000041342815"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"},{"Name":"original-resource","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js","AssetFile":"lib/bootstrap/dist/js/bootstrap.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"145401"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 07:54:51 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-+UW802wgVfnjaSbdwyHLlU7AVplb0WToOlvN1CnzIac="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.br","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.br","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"br"},{"Name":"Content-Length","Value":"24187"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-t+wQ1qhbaXOK7onGSaz+mxEgU3fdm/mjY/oygeyJDYg="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.br"}]},{"Route":"lib/bootstrap/dist/js/bootstrap.notf2xhcfb.js.gz","AssetFile":"lib/bootstrap/dist/js/bootstrap.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"29657"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs=\""},{"Name":"Last-Modified","Value":"Fri, 09 Jan 2026 10:00:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"notf2xhcfb"},{"Name":"integrity","Value":"sha256-mLLuMjFYOIYX8xSc8UD/TLCKJOjlhcscgrxC5va1aAs="},{"Name":"label","Value":"lib/bootstrap/dist/js/bootstrap.js.gz"}]}]} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/PCANBasic.NET.dll b/BlazorApp/obj/Release/net10.0/PubTmp/Out/PCANBasic.NET.dll new file mode 100644 index 0000000..c4731b8 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/PCANBasic.NET.dll differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/SocketCANSharp.dll b/BlazorApp/obj/Release/net10.0/PubTmp/Out/SocketCANSharp.dll new file mode 100644 index 0000000..129a2b2 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/SocketCANSharp.dll differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/appsettings.Development.json b/BlazorApp/obj/Release/net10.0/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/appsettings.json b/BlazorApp/obj/Release/net10.0/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/web.config b/BlazorApp/obj/Release/net10.0/PubTmp/Out/web.config new file mode 100644 index 0000000..c769635 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/web.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css new file mode 100644 index 0000000..de102bd --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css @@ -0,0 +1,363 @@ +/* /Components/Layout/MainLayout.razor.rz.scp.css */ +.page[b-qgsvw684bo] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-qgsvw684bo] { + flex: 1; +} + +.sidebar[b-qgsvw684bo] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-qgsvw684bo] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + white-space: nowrap; + margin-left: 1.5rem; + text-decoration: none; + } + + .top-row[b-qgsvw684bo] a:hover, .top-row[b-qgsvw684bo] .btn-link:hover { + text-decoration: underline; + } + + .top-row[b-qgsvw684bo] a:first-child { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row[b-qgsvw684bo] { + justify-content: space-between; + } + + .top-row[b-qgsvw684bo] a, .top-row[b-qgsvw684bo] .btn-link { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-qgsvw684bo] { + flex-direction: row; + } + + .sidebar[b-qgsvw684bo] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-qgsvw684bo] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row.auth[b-qgsvw684bo] a:first-child { + flex: 1; + text-align: right; + width: 0; + } + + .top-row[b-qgsvw684bo], article[b-qgsvw684bo] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} + +#blazor-error-ui[b-qgsvw684bo] { + color-scheme: light only; + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + box-sizing: border-box; + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss[b-qgsvw684bo] { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } +/* /Components/Layout/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-g8o6n169oq] { + appearance: none; + cursor: pointer; + width: 3.5rem; + height: 2.5rem; + color: white; + position: absolute; + top: 0.5rem; + right: 1rem; + border: 1px solid rgba(255, 255, 255, 0.1); + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1); +} + +.navbar-toggler:checked[b-g8o6n169oq] { + background-color: rgba(255, 255, 255, 0.5); +} + +.top-row[b-g8o6n169oq] { + min-height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-g8o6n169oq] { + font-size: 1.1rem; +} + +.bi[b-g8o6n169oq] { + display: inline-block; + position: relative; + width: 1.25rem; + height: 1.25rem; + margin-right: 0.75rem; + top: -1px; + background-size: cover; +} + +.bi-house-door-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); +} + +.bi-plus-square-fill-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); +} + +.bi-list-nested-nav-menu[b-g8o6n169oq] { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); +} + +.nav-item[b-g8o6n169oq] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-g8o6n169oq] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-g8o6n169oq] { + padding-bottom: 1rem; + } + + .nav-item[b-g8o6n169oq] .nav-link { + color: #d7d7d7; + background: none; + border: none; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + width: 100%; + } + +.nav-item[b-g8o6n169oq] a.active { + background-color: rgba(255,255,255,0.37); + color: white; +} + +.nav-item[b-g8o6n169oq] .nav-link:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +.nav-scrollable[b-g8o6n169oq] { + display: none; +} + +.navbar-toggler:checked ~ .nav-scrollable[b-g8o6n169oq] { + display: block; +} + +@media (min-width: 641px) { + .navbar-toggler[b-g8o6n169oq] { + display: none; + } + + .nav-scrollable[b-g8o6n169oq] { + /* Never collapse the sidebar for wide screens */ + display: block; + + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} +/* /Components/Layout/ReconnectModal.razor.rz.scp.css */ +.components-reconnect-first-attempt-visible[b-pphnjiao61], +.components-reconnect-repeated-attempt-visible[b-pphnjiao61], +.components-reconnect-failed-visible[b-pphnjiao61], +.components-pause-visible[b-pphnjiao61], +.components-resume-failed-visible[b-pphnjiao61], +.components-rejoining-animation[b-pphnjiao61] { + display: none; +} + +#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed[b-pphnjiao61], +#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-pphnjiao61] { + display: block; +} + + +#components-reconnect-modal[b-pphnjiao61] { + 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-pphnjiao61 0.5s both; + &[open] + +{ + animation: components-reconnect-modal-slideUp-b-pphnjiao61 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out 0.3s; + animation-fill-mode: both; +} + +} + +#components-reconnect-modal[b-pphnjiao61]::backdrop { + background-color: rgba(0, 0, 0, 0.4); + animation: components-reconnect-modal-fadeInOpacity-b-pphnjiao61 0.5s ease-in-out; + opacity: 1; +} + +@keyframes components-reconnect-modal-slideUp-b-pphnjiao61 { + 0% { + transform: translateY(30px) scale(0.95); + } + + 100% { + transform: translateY(0); + } +} + +@keyframes components-reconnect-modal-fadeInOpacity-b-pphnjiao61 { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes components-reconnect-modal-fadeOutOpacity-b-pphnjiao61 { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.components-reconnect-container[b-pphnjiao61] { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +#components-reconnect-modal p[b-pphnjiao61] { + margin: 0; + text-align: center; +} + +#components-reconnect-modal button[b-pphnjiao61] { + border: 0; + background-color: #6b9ed2; + color: white; + padding: 4px 24px; + border-radius: 4px; +} + + #components-reconnect-modal button:hover[b-pphnjiao61] { + background-color: #3b6ea2; + } + + #components-reconnect-modal button:active[b-pphnjiao61] { + background-color: #6b9ed2; + } + +.components-rejoining-animation[b-pphnjiao61] { + position: relative; + width: 80px; + height: 80px; +} + + .components-rejoining-animation div[b-pphnjiao61] { + position: absolute; + border: 3px solid #0087ff; + opacity: 1; + border-radius: 50%; + animation: components-rejoining-animation-b-pphnjiao61 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite; + } + + .components-rejoining-animation div:nth-child(2)[b-pphnjiao61] { + animation-delay: -0.5s; + } + +@keyframes components-rejoining-animation-b-pphnjiao61 { + 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/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css.br new file mode 100644 index 0000000..85f0da2 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css.gz new file mode 100644 index 0000000..5707000 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/BlazorApp.styles.css.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js new file mode 100644 index 0000000..e52a190 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/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/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js.br new file mode 100644 index 0000000..ee24855 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js.gz new file mode 100644 index 0000000..3f76529 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/Components/Layout/ReconnectModal.razor.js.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js new file mode 100644 index 0000000..64d94e7 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js @@ -0,0 +1,2 @@ +!function(){"use strict";var e,t,n;!function(e){const t=[],n="__jsObjectId",r="__dotNetObject",o="__byte[]",i="__dotNetStream",s="__jsStreamReferenceLength";let a,c,l;class h{constructor(e){this._jsObject=e,this._cachedHandlers=new Map}resolveInvocationHandler(e,t){var n;const r=null===(n=this._cachedHandlers.get(e))||void 0===n?void 0:n[t];if(r)return r;const[o,i]=E(this._jsObject,e),s=function(e,t,n,r){switch(n){case l.FunctionCall:const n=e[t];if(n instanceof Function)return n.bind(e);throw new Error(`The value '${r}' is not a function.`);case l.ConstructorCall:const o=e[t];if(o instanceof Function){const t=o.bind(e);return(...e)=>new t(...e)}throw new Error(`The value '${r}' is not a function.`);case l.GetValue:if(!function(e,t){if(!(t in e))return!1;for(;void 0!==e;){const n=Object.getOwnPropertyDescriptor(e,t);if(n)return!!n.hasOwnProperty("value")||n.hasOwnProperty("get")&&"function"==typeof n.get;e=Object.getPrototypeOf(e)}return!1}(e,t))throw new Error(`The property '${r}' is not defined or is not readable.`);return()=>e[t];case l.SetValue:if(!function(e,t){if(!(t in e))return Object.isExtensible(e);for(;void 0!==e;){const n=Object.getOwnPropertyDescriptor(e,t);if(n)return!(!n.hasOwnProperty("value")||!n.writable)||n.hasOwnProperty("set")&&"function"==typeof n.set;e=Object.getPrototypeOf(e)}return!1}(e,t))throw new Error(`The property '${r}' is not writable.`);return(...n)=>e[t]=n[0]}}(o,i,t,e);return this.addHandlerToCache(e,s,t),s}getWrappedObject(){return this._jsObject}addHandlerToCache(e,t,n){const r=this._cachedHandlers.get(e);r?r[n]=t:this._cachedHandlers.set(e,{[n]:t})}}!function(e){e[e.FunctionCall=1]="FunctionCall",e[e.ConstructorCall=2]="ConstructorCall",e[e.GetValue=3]="GetValue",e[e.SetValue=4]="SetValue"}(l=e.JSCallType||(e.JSCallType={}));const u=0,d={[u]:new h(window)};d[0]._cachedHandlers.set("import",{[l.FunctionCall]:e=>("string"==typeof e&&e.startsWith("./")&&(e=new URL(e.substring(2),document.baseURI).toString()),import(e))});let p,f=1;function g(e){t.push(e)}function m(e){if(null==e)return{[n]:-1};if(e&&("object"==typeof e||e instanceof Function)){d[f]=new h(e);const t={[n]:f};return f++,t}throw new Error(`Cannot create a JSObjectReference from the value '${e}'.`)}function y(e){let t=-1;if(e instanceof ArrayBuffer&&(e=new Uint8Array(e)),e instanceof Blob)t=e.size;else{if(!(e.buffer instanceof ArrayBuffer))throw new Error("Supplied value is not a typed array or blob.");if(void 0===e.byteLength)throw new Error(`Cannot create a JSStreamReference from the value '${e}' as it doesn't have a byteLength.`);t=e.byteLength}const r={[s]:t};try{const t=m(e);r[n]=t[n]}catch(t){throw new Error(`Cannot create a JSStreamReference from the value '${e}'.`)}return r}function v(e,n){c=e;const r=n?JSON.parse(n,((e,n)=>t.reduce(((t,n)=>n(e,t)),n))):null;return c=void 0,r}function _(){if(void 0===a)throw new Error("No call dispatcher has been set.");if(null===a)throw new Error("There are multiple .NET runtimes present, so a default dispatcher could not be resolved. Use DotNetObject to invoke .NET instance methods.");return a}e.attachDispatcher=function(e){const t=new w(e);return void 0===a?a=t:a&&(a=null),t},e.attachReviver=g,e.invokeMethod=function(e,t,...n){return _().invokeDotNetStaticMethod(e,t,...n)},e.invokeMethodAsync=function(e,t,...n){return _().invokeDotNetStaticMethodAsync(e,t,...n)},e.createJSObjectReference=m,e.createJSStreamReference=y,e.disposeJSObjectReference=function(e){const t=e&&e[n];"number"==typeof t&&-1!==t&&C(t)},function(e){e[e.Default=0]="Default",e[e.JSObjectReference=1]="JSObjectReference",e[e.JSStreamReference=2]="JSStreamReference",e[e.JSVoidResult=3]="JSVoidResult"}(p=e.JSCallResultType||(e.JSCallResultType={}));class w{constructor(e){this._dotNetCallDispatcher=e,this._byteArraysToBeRevived=new Map,this._pendingDotNetToJSStreams=new Map,this._pendingAsyncCalls={},this._nextAsyncCallId=1}getDotNetCallDispatcher(){return this._dotNetCallDispatcher}invokeJSFromDotNet(e,t,n,r,o){const i=R(this.processJSCall(r,e,o,t),n);return null==i?null:x(this,i)}async beginInvokeJSFromDotNet(e,t,n,r,o,i){try{const s=this.processJSCall(o,t,i,n);if(e){const t=x(this,[e,!0,R(await s,r)]);this._dotNetCallDispatcher.endInvokeJSFromDotNet(e,!0,t)}}catch(t){if(e){const n=JSON.stringify([e,!1,b(t)]);this._dotNetCallDispatcher.endInvokeJSFromDotNet(e,!1,n)}}}processJSCall(e,t,n,r){var o;const i=null!==(o=v(this,r))&&void 0!==o?o:[];return S(t,e,n)(...i)}endInvokeDotNetFromJS(e,t,n){const r=t?v(this,n):new Error(n);this.completePendingCall(parseInt(e,10),t,r)}invokeDotNetStaticMethod(e,t,...n){return this.invokeDotNetMethod(e,t,null,n)}invokeDotNetStaticMethodAsync(e,t,...n){return this.invokeDotNetMethodAsync(e,t,null,n)}invokeDotNetMethod(e,t,n,r){if(this._dotNetCallDispatcher.invokeDotNetFromJS){const o=x(this,r),i=this._dotNetCallDispatcher.invokeDotNetFromJS(e,t,n,o);return i?v(this,i):null}throw new Error("The current dispatcher does not support synchronous calls from JS to .NET. Use invokeDotNetMethodAsync instead.")}invokeDotNetMethodAsync(e,t,n,r){if(e&&n)throw new Error(`For instance method calls, assemblyName should be null. Received '${e}'.`);const o=this._nextAsyncCallId++,i=new Promise(((e,t)=>{this._pendingAsyncCalls[o]={resolve:e,reject:t}}));try{const i=x(this,r);this._dotNetCallDispatcher.beginInvokeDotNetFromJS(o,e,t,n,i)}catch(e){this.completePendingCall(o,!1,e)}return i}receiveByteArray(e,t){this._byteArraysToBeRevived.set(e,t)}processByteArray(e){const t=this._byteArraysToBeRevived.get(e);return t?(this._byteArraysToBeRevived.delete(e),t):null}supplyDotNetStream(e,t){if(this._pendingDotNetToJSStreams.has(e)){const n=this._pendingDotNetToJSStreams.get(e);this._pendingDotNetToJSStreams.delete(e),n.resolve(t)}else{const n=new T;n.resolve(t),this._pendingDotNetToJSStreams.set(e,n)}}getDotNetStreamPromise(e){let t;if(this._pendingDotNetToJSStreams.has(e))t=this._pendingDotNetToJSStreams.get(e).streamPromise,this._pendingDotNetToJSStreams.delete(e);else{const n=new T;this._pendingDotNetToJSStreams.set(e,n),t=n.streamPromise}return t}completePendingCall(e,t,n){if(!this._pendingAsyncCalls.hasOwnProperty(e))throw new Error(`There is no pending async call with ID ${e}.`);const r=this._pendingAsyncCalls[e];delete this._pendingAsyncCalls[e],t?r.resolve(n):r.reject(n)}}function b(e){return e instanceof Error?`${e.message}\n${e.stack}`:e?e.toString():"null"}function S(e,t,n){const r=d[t];if(r)return r.resolveInvocationHandler(e,null!=n?n:l.FunctionCall);throw new Error(`JS object instance with ID ${t} does not exist (has it been disposed?).`)}function C(e){delete d[e]}function E(e,t){const n=t.split(".");let r=e;for(let e=0;econsole.error(e)))}serializeAsArg(){return{[r]:this._id}}}e.DotNetObject=I,g((function(e,t){if(t&&"object"==typeof t){if(t.hasOwnProperty(r))return new I(t[r],c);if(t.hasOwnProperty(n)){const e=t[n],r=d[e];if(r)return r.getWrappedObject();throw new Error(`JS object instance with Id '${e}' does not exist. It may have been disposed.`)}if(t.hasOwnProperty(o)){const e=t[o],n=c.processByteArray(e);if(void 0===n)throw new Error(`Byte array index '${e}' does not exist.`);return n}if(t.hasOwnProperty(i)){const e=t[i],n=c.getDotNetStreamPromise(e);return new k(n)}}return t}));class k{constructor(e){this._streamPromise=e}stream(){return this._streamPromise}async arrayBuffer(){return new Response(await this.stream()).arrayBuffer()}}class T{constructor(){this.streamPromise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}function R(e,t){switch(t){case p.Default:return e;case p.JSObjectReference:return m(e);case p.JSStreamReference:return y(e);case p.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${t}'.`)}}let D=0;function x(e,t){D=0,c=e;const n=JSON.stringify(t,A);return c=void 0,n}function A(e,t){if(t instanceof I)return t.serializeAsArg();if(t instanceof Uint8Array){c.getDotNetCallDispatcher().sendByteArray(D,t);const e={[o]:D};return D++,e}return t}}(e||(e={})),function(e){e[e.prependFrame=1]="prependFrame",e[e.removeFrame=2]="removeFrame",e[e.setAttribute=3]="setAttribute",e[e.removeAttribute=4]="removeAttribute",e[e.updateText=5]="updateText",e[e.stepIn=6]="stepIn",e[e.stepOut=7]="stepOut",e[e.updateMarkup=8]="updateMarkup",e[e.permutationListEntry=9]="permutationListEntry",e[e.permutationListEnd=10]="permutationListEnd"}(t||(t={})),function(e){e[e.element=1]="element",e[e.text=2]="text",e[e.attribute=3]="attribute",e[e.component=4]="component",e[e.region=5]="region",e[e.elementReferenceCapture=6]="elementReferenceCapture",e[e.markup=8]="markup",e[e.namedEvent=10]="namedEvent"}(n||(n={}));class r{constructor(e,t){this.componentId=e,this.fieldValue=t}static fromEvent(e,t){const n=t.target;if(n instanceof Element){const t=function(e){return e instanceof HTMLInputElement?e.type&&"checkbox"===e.type.toLowerCase()?{value:e.checked}:{value:e.value}:e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement?{value:e.value}:null}(n);if(t)return new r(e,t.value)}return null}}const o=new Map,i=new Map,s=[];function a(e){return o.get(e)}function c(e){const t=o.get(e);return t?.browserEventName||e}function l(e,t){e.forEach((e=>o.set(e,t)))}function h(e){const t=[];for(let n=0;ne.selected)).map((e=>e.value))}}{const e=function(e){return!!e&&"INPUT"===e.tagName&&"checkbox"===e.getAttribute("type")}(t);return{value:e?!!t.checked:t.value}}}}),l(["copy","cut","paste"],{createEventArgs:e=>({type:e.type})}),l(["drag","dragend","dragenter","dragleave","dragover","dragstart","drop"],{createEventArgs:e=>{return{...u(t=e),dataTransfer:t.dataTransfer?{dropEffect:t.dataTransfer.dropEffect,effectAllowed:t.dataTransfer.effectAllowed,files:Array.from(t.dataTransfer.files).map((e=>e.name)),items:Array.from(t.dataTransfer.items).map((e=>({kind:e.kind,type:e.type}))),types:t.dataTransfer.types}:null};var t}}),l(["focus","blur","focusin","focusout"],{createEventArgs:e=>({type:e.type})}),l(["keydown","keyup","keypress"],{createEventArgs:e=>{return{key:(t=e).key,code:t.code,location:t.location,repeat:t.repeat,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type,isComposing:t.isComposing};var t}}),l(["contextmenu","click","mouseover","mouseout","mousemove","mousedown","mouseup","mouseleave","mouseenter","dblclick"],{createEventArgs:e=>u(e)}),l(["error"],{createEventArgs:e=>{return{message:(t=e).message,filename:t.filename,lineno:t.lineno,colno:t.colno,type:t.type};var t}}),l(["loadstart","timeout","abort","load","loadend","progress"],{createEventArgs:e=>{return{lengthComputable:(t=e).lengthComputable,loaded:t.loaded,total:t.total,type:t.type};var t}}),l(["touchcancel","touchend","touchmove","touchenter","touchleave","touchstart"],{createEventArgs:e=>{return{detail:(t=e).detail,touches:h(t.touches),targetTouches:h(t.targetTouches),changedTouches:h(t.changedTouches),ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["gotpointercapture","lostpointercapture","pointercancel","pointerdown","pointerenter","pointerleave","pointermove","pointerout","pointerover","pointerup"],{createEventArgs:e=>{return{...u(t=e),pointerId:t.pointerId,width:t.width,height:t.height,pressure:t.pressure,tiltX:t.tiltX,tiltY:t.tiltY,pointerType:t.pointerType,isPrimary:t.isPrimary};var t}}),l(["wheel","mousewheel"],{createEventArgs:e=>{return{...u(t=e),deltaX:t.deltaX,deltaY:t.deltaY,deltaZ:t.deltaZ,deltaMode:t.deltaMode};var t}}),l(["cancel","close","toggle"],{createEventArgs:()=>({})});const d=["date","datetime-local","month","time","week"],p=new Map;let f,g,m=0;const y={async add(e,t,n){if(!n)throw new Error("initialParameters must be an object, even if empty.");const r="__bl-dynamic-root:"+(++m).toString();p.set(r,e);const o=await w().invokeMethodAsync("AddRootComponent",t,r),i=new _(o,g[t]);return await i.setParameters(n),i}};class v{invoke(e){return this._callback(e)}setCallback(t){this._selfJSObjectReference||(this._selfJSObjectReference=e.createJSObjectReference(this)),this._callback=t}getJSObjectReference(){return this._selfJSObjectReference}dispose(){this._selfJSObjectReference&&e.disposeJSObjectReference(this._selfJSObjectReference)}}class _{constructor(e,t){this._jsEventCallbackWrappers=new Map,this._componentId=e;for(const e of t)"eventcallback"===e.type&&this._jsEventCallbackWrappers.set(e.name.toLowerCase(),new v)}setParameters(e){const t={},n=Object.entries(e||{}),r=n.length;for(const[e,r]of n){const n=this._jsEventCallbackWrappers.get(e.toLowerCase());n&&r?(n.setCallback(r),t[e]=n.getJSObjectReference()):t[e]=r}return w().invokeMethodAsync("SetRootComponentParameters",this._componentId,r,t)}async dispose(){if(null!==this._componentId){await w().invokeMethodAsync("RemoveRootComponent",this._componentId),this._componentId=null;for(const e of this._jsEventCallbackWrappers.values())e.dispose()}}}function w(){if(!f)throw new Error("Dynamic root components have not been enabled in this application.");return f}const b=new Map,S=[],C=new Map;function E(t,n,r,o){if(b.has(t))throw new Error(`Interop methods are already registered for renderer ${t}`);b.set(t,n),r&&o&&Object.keys(r).length>0&&function(t,n,r){if(f)throw new Error("Dynamic root components have already been enabled.");f=t,g=n;for(const[t,o]of Object.entries(r)){const r=e.findJSFunction(t,0);for(const e of o)r(e,n[e])}}(T(t),r,o),C.get(t)?.[0]?.(),function(e){for(const t of S)t(e)}(t)}function I(e){return b.has(e)}function k(e,t,n){return R(e,t.eventHandlerId,(()=>T(e).invokeMethodAsync("DispatchEventAsync",t,n)))}function T(e){const t=b.get(e);if(!t)throw new Error(`No interop methods are registered for renderer ${e}`);return t}let R=(e,t,n)=>n();const D=U(["abort","blur","cancel","canplay","canplaythrough","change","close","cuechange","durationchange","emptied","ended","error","focus","load","loadeddata","loadedmetadata","loadend","loadstart","mouseenter","mouseleave","pointerenter","pointerleave","pause","play","playing","progress","ratechange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeupdate","toggle","unload","volumechange","waiting","DOMNodeInsertedIntoDocument","DOMNodeRemovedFromDocument"]),x={submit:!0},A=U(["click","dblclick","mousedown","mousemove","mouseup"]);class P{static{this.nextEventDelegatorId=0}constructor(e){this.browserRendererId=e,this.afterClickCallbacks=[];const t=++P.nextEventDelegatorId;this.eventsCollectionKey=`_blazorEvents_${t}`,this.eventInfoStore=new N(this.onGlobalEvent.bind(this))}setListener(e,t,n,r){const o=this.getEventHandlerInfosForElement(e,!0),i=o.getHandler(t);if(i)this.eventInfoStore.update(i.eventHandlerId,n);else{const i={element:e,eventName:t,eventHandlerId:n,renderingComponentId:r};this.eventInfoStore.add(i),o.setHandler(t,i)}}getHandler(e){return this.eventInfoStore.get(e)}removeListener(e){const t=this.eventInfoStore.remove(e);if(t){const e=t.element,n=this.getEventHandlerInfosForElement(e,!1);n&&n.removeHandler(t.eventName)}}removeListenersForElement(e){const t=this.getEventHandlerInfosForElement(e,!1);if(t){for(const e of t.enumerateHandlers())this.eventInfoStore.remove(e.eventHandlerId);delete e[this.eventsCollectionKey]}}notifyAfterClick(e){this.afterClickCallbacks.push(e),this.eventInfoStore.addGlobalListener("click")}setStopPropagation(e,t,n){const r=this.getEventHandlerInfosForElement(e,!0),o=r.stopPropagation(t);r.stopPropagation(t,n),!o&&n?this.eventInfoStore.addGlobalListener(t):o&&!n&&this.eventInfoStore.decrementCountByEventName(t)}setPreventDefault(e,t,n){const r=this.getEventHandlerInfosForElement(e,!0),o=r.preventDefault(t);r.preventDefault(t,n),!o&&n?this.eventInfoStore.addActiveGlobalListener(t):o&&!n&&this.eventInfoStore.decrementCountByEventName(t)}onGlobalEvent(e){if(!(e.target instanceof Element))return;if(!I(this.browserRendererId))return;this.dispatchGlobalEventToAllElements(e.type,e);const t=(n=e.type,i.get(n));var n;t&&t.forEach((t=>this.dispatchGlobalEventToAllElements(t,e))),"click"===e.type&&this.afterClickCallbacks.forEach((t=>t(e)))}dispatchGlobalEventToAllElements(e,t){const n=t.composedPath();let o=n.shift(),i=null,s=!1;const c=Object.prototype.hasOwnProperty.call(D,e);let l=!1;for(;o;){const d=o,p=this.getEventHandlerInfosForElement(d,!1);if(p){const n=p.getHandler(e);if(n&&(h=d,u=t.type,!((h instanceof HTMLButtonElement||h instanceof HTMLInputElement||h instanceof HTMLTextAreaElement||h instanceof HTMLSelectElement)&&Object.prototype.hasOwnProperty.call(A,u)&&h.disabled))){if(!s){const n=a(e);i=n?.createEventArgs?n.createEventArgs(t):{},s=!0}Object.prototype.hasOwnProperty.call(x,t.type)&&t.preventDefault(),k(this.browserRendererId,{eventHandlerId:n.eventHandlerId,eventName:e,eventFieldInfo:r.fromEvent(n.renderingComponentId,t)},i)}p.stopPropagation(e)&&(l=!0),p.preventDefault(e)&&t.preventDefault()}o=c||l?void 0:n.shift()}var h,u}getEventHandlerInfosForElement(e,t){return Object.prototype.hasOwnProperty.call(e,this.eventsCollectionKey)?e[this.eventsCollectionKey]:t?e[this.eventsCollectionKey]=new M:null}}class N{constructor(e){this.globalListener=e,this.infosByEventHandlerId={},this.countByEventName={},s.push(this.handleEventNameAliasAdded.bind(this))}add(e){if(this.infosByEventHandlerId[e.eventHandlerId])throw new Error(`Event ${e.eventHandlerId} is already tracked`);this.infosByEventHandlerId[e.eventHandlerId]=e,this.addGlobalListener(e.eventName)}get(e){return this.infosByEventHandlerId[e]}addGlobalListener(e){if(e=c(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e))this.countByEventName[e]++;else{this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(D,e);document.addEventListener(e,this.globalListener,t)}}addActiveGlobalListener(e){e=c(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e)?(this.countByEventName[e]++,document.removeEventListener(e,this.globalListener)):this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(D,e);document.addEventListener(e,this.globalListener,{capture:t,passive:!1})}update(e,t){if(Object.prototype.hasOwnProperty.call(this.infosByEventHandlerId,t))throw new Error(`Event ${t} is already tracked`);const n=this.infosByEventHandlerId[e];delete this.infosByEventHandlerId[e],n.eventHandlerId=t,this.infosByEventHandlerId[t]=n}remove(e){const t=this.infosByEventHandlerId[e];if(t){delete this.infosByEventHandlerId[e];const n=c(t.eventName);this.decrementCountByEventName(n)}return t}decrementCountByEventName(e){0==--this.countByEventName[e]&&(delete this.countByEventName[e],document.removeEventListener(e,this.globalListener))}handleEventNameAliasAdded(e,t){if(Object.prototype.hasOwnProperty.call(this.countByEventName,e)){const n=this.countByEventName[e];delete this.countByEventName[e],document.removeEventListener(e,this.globalListener),this.addGlobalListener(t),this.countByEventName[t]+=n-1}}}class M{constructor(){this.handlers={},this.preventDefaultFlags=null,this.stopPropagationFlags=null}*enumerateHandlers(){for(const e in this.handlers)Object.prototype.hasOwnProperty.call(this.handlers,e)&&(yield this.handlers[e])}getHandler(e){return Object.prototype.hasOwnProperty.call(this.handlers,e)?this.handlers[e]:null}setHandler(e,t){this.handlers[e]=t}removeHandler(e){delete this.handlers[e]}preventDefault(e,t){return void 0!==t&&(this.preventDefaultFlags=this.preventDefaultFlags||{},this.preventDefaultFlags[e]=t),!!this.preventDefaultFlags&&this.preventDefaultFlags[e]}stopPropagation(e,t){return void 0!==t&&(this.stopPropagationFlags=this.stopPropagationFlags||{},this.stopPropagationFlags[e]=t),!!this.stopPropagationFlags&&this.stopPropagationFlags[e]}}function U(e){const t={};return e.forEach((e=>{t[e]=!0})),t}const B=Symbol(),L=Symbol(),$=Symbol();function O(e,t){if(B in e)return e;const n=[];if(e.childNodes.length>0){if(!t)throw new Error("New logical elements must start empty, or allowExistingContents must be true");e.childNodes.forEach((t=>{const r=O(t,!0);r[L]=e,n.push(r)}))}return e[B]=n,e}function H(e){const t=V(e);for(;t.length;)W(e,0)}function F(e,t){const n=document.createComment("!");return j(n,e,t),n}function j(e,t,n){const r=e;let o=e;if(e instanceof Comment){const t=V(r);if(t?.length>0){const t=Z(r),n=new Range;n.setStartBefore(e),n.setEndAfter(t),o=n.extractContents()}}const i=z(r);if(i){const e=V(i),t=Array.prototype.indexOf.call(e,r);e.splice(t,1),delete r[L]}const s=V(t);if(n0;)W(n,0)}const r=n;r.parentNode.removeChild(r)}function z(e){return e[L]||null}function q(e,t){return V(e)[t]}function J(e){const t=Y(e);return"http://www.w3.org/2000/svg"===t.namespaceURI&&"foreignObject"!==t.tagName}function V(e){return e[B]}function K(e){const t=V(z(e));return t[Array.prototype.indexOf.call(t,e)+1]||null}function*X(e){const t=V(e);for(const e of t)yield*X(e);yield e}function G(e,t){const n=V(e);t.forEach((e=>{e.moveRangeStart=n[e.fromSiblingIndex],e.moveRangeEnd=Z(e.moveRangeStart)})),t.forEach((t=>{const r=document.createComment("marker");t.moveToBeforeMarker=r;const o=n[t.toSiblingIndex+1];o?o.parentNode.insertBefore(r,o):Q(r,e)})),t.forEach((e=>{const t=e.moveToBeforeMarker,n=t.parentNode,r=e.moveRangeStart,o=e.moveRangeEnd;let i=r;for(;i;){const e=i.nextSibling;if(n.insertBefore(i,t),i===o)break;i=e}n.removeChild(t)})),t.forEach((e=>{n[e.toSiblingIndex]=e.moveRangeStart}))}function Y(e){if(e instanceof Element||e instanceof DocumentFragment)return e;if(e instanceof Comment)return e.parentNode;throw new Error("Not a valid logical element")}function Q(e,t){if(t instanceof Element||t instanceof DocumentFragment)t.appendChild(e);else{if(!(t instanceof Comment))throw new Error(`Cannot append node because the parent is not a valid logical element. Parent: ${t}`);{const n=K(t);n?n.parentNode.insertBefore(e,n):Q(e,z(t))}}}function Z(e){if(e instanceof Element||e instanceof DocumentFragment)return e;const t=K(e);if(t)return t.previousSibling;{const t=z(e);return t instanceof Element||t instanceof DocumentFragment?t.lastChild:Z(t)}}function ee(e){return`_bl_${e}`}const te="__internalId";e.attachReviver(((e,t)=>t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,te)&&"string"==typeof t[te]?function(e){const t=`[${ee(e)}]`;return document.querySelector(t)}(t[te]):t));const ne="_blazorDeferredValue";function re(e){return"select-multiple"===e.type}function oe(e,t){e.value=t||""}function ie(e,t){e instanceof HTMLSelectElement?re(e)?function(e,t){t||=[];for(let n=0;n{Ce()&&function(e){if(0!==e.button||function(e){return e.ctrlKey||e.shiftKey||e.altKey||e.metaKey}(e))return;if(e.defaultPrevented)return;const t=function(e){const t=e.composedPath&&e.composedPath();if(t)for(let e=0;e{const t=document.createElement("script");t.textContent=e.textContent,e.getAttributeNames().forEach((n=>{t.setAttribute(n,e.getAttribute(n))})),e.parentNode.replaceChild(t,e)})),ae.content));var s;let a=0;for(;i.firstChild;)j(i.firstChild,o,a++)}applyAttribute(e,t,n,r){const o=e.frameReader,i=o.attributeName(r),s=o.attributeEventHandlerId(r);if(s){const e=ge(i);return void this.eventDelegator.setListener(n,e,s,t)}const a=o.attributeValue(r);this.setOrRemoveAttributeOrProperty(n,i,a)}insertFrameRange(e,t,n,r,o,i,s){const a=r;for(let a=i;adocument.baseURI,getLocationHref:()=>location.href,scrollToElement:be};function Pe(e,t,n=!1){const r=Se(e);!t.forceLoad&&we(r)?Ne(r,!1,t.replaceHistoryEntry,t.historyEntryState,n):function(e,t){if(location.href===e){const t=e+"?";history.replaceState(null,"",t),location.replace(e)}else t?location.replace(e):location.href=e}(e,t.replaceHistoryEntry)}async function Ne(e,t,n,r=void 0,o=!1){if(Be(),function(e,t){const n=new URL(e),r=new URL(t);return n.origin===r.origin&&n.pathname===r.pathname&&n.search===r.search&&""!==r.hash}(location.href,e))return Me(e,n,r),void function(e){const t=e.indexOf("#");t!==e.length-1&&be(e.substring(t+1))}(e);const i=He();(o||!i?.hasLocationChangingEventListeners||await Le(e,r,t,i))&&(function(e,t){const n=new URL(e),r=new URL(t);return n.protocol===r.protocol&&n.host===r.host&&n.port===r.port&&n.pathname===r.pathname}(e,location.href)||(_e=!0),Me(e,n,r),await $e(t))}function Me(e,t,n=void 0){t?history.replaceState({userState:n,_index:ke},"",e):(ke++,history.pushState({userState:n,_index:ke},"",e))}function Ue(e){return new Promise((t=>{const n=De;De=()=>{De=n,t()},history.go(e)}))}function Be(){xe&&(xe(!1),xe=null)}function Le(e,t,n,r){return new Promise((o=>{Be(),Te++,xe=o,r.locationChanging(Te,e,t,n)}))}async function $e(e,t){const n=location.href;await Promise.all(Array.from(Re,(async([t,r])=>{I(t)&&await r.locationChanged(n,history.state?.userState,e)})))}async function Oe(e){De&&(Ce(),1)&&await De(e),ke=history.state?._index??0}function He(){const e=Ee();if(void 0!==e)return Re.get(e)}const Fe={focus:function(e,t){if(e instanceof HTMLElement)e.focus({preventScroll:t});else{if(!(e instanceof SVGElement))throw new Error("Unable to focus an invalid element.");if(!e.hasAttribute("tabindex"))throw new Error("Unable to focus an SVG element that does not have a tabindex.");e.focus({preventScroll:t})}},focusBySelector:function(e){const t=document.querySelector(e);t&&(t.hasAttribute("tabindex")||(t.tabIndex=-1),t.focus({preventScroll:!0}))}},je={init:function(e,t,n,r=50){const o=ze(t);(o||document.documentElement).style.overflowAnchor="none";const i=document.createRange();d(n.parentElement)&&(t.style.display="table-row",n.style.display="table-row");const s=new IntersectionObserver((function(r){r.forEach((r=>{if(!r.isIntersecting)return;i.setStartAfter(t),i.setEndBefore(n);const o=i.getBoundingClientRect().height,s=r.rootBounds?.height;r.target===t?e.invokeMethodAsync("OnSpacerBeforeVisible",r.intersectionRect.top-r.boundingClientRect.top,o,s):r.target===n&&n.offsetHeight>0&&e.invokeMethodAsync("OnSpacerAfterVisible",r.boundingClientRect.bottom-r.intersectionRect.bottom,o,s)}))}),{root:o,rootMargin:`${r}px`});s.observe(t),s.observe(n);const a=u(t),c=u(n),{observersByDotNetObjectId:l,id:h}=qe(e);function u(e){const t={attributes:!0},n=new MutationObserver(((n,r)=>{d(e.parentElement)&&(r.disconnect(),e.style.display="table-row",r.observe(e,t)),s.unobserve(e),s.observe(e)}));return n.observe(e,t),n}function d(e){return null!==e&&(e instanceof HTMLTableElement&&""===e.style.display||"table"===e.style.display||e instanceof HTMLTableSectionElement&&""===e.style.display||"table-row-group"===e.style.display)}l[h]={intersectionObserver:s,mutationObserverBefore:a,mutationObserverAfter:c}},dispose:function(e){const{observersByDotNetObjectId:t,id:n}=qe(e),r=t[n];r&&(r.intersectionObserver.disconnect(),r.mutationObserverBefore.disconnect(),r.mutationObserverAfter.disconnect(),e.dispose(),delete t[n])}},We=Symbol();function ze(e){return e&&e!==document.body&&e!==document.documentElement?"visible"!==getComputedStyle(e).overflowY?e:ze(e.parentElement):null}function qe(e){const t=e._callDispatcher,n=e._id;return t[We]??={},{observersByDotNetObjectId:t[We],id:n}}const Je={getAndRemoveExistingTitle:function(){const e=document.head?document.head.getElementsByTagName("title"):[];if(0===e.length)return null;let t=null;for(let n=e.length-1;n>=0;n--){const r=e[n],o=r.previousSibling;o instanceof Comment&&null!==z(o)||(null===t&&(t=r.textContent),r.parentNode?.removeChild(r))}return t}},Ve={init:function(e,t){t._blazorInputFileNextFileId=0,t.addEventListener("click",(function(){t.value=""})),t.addEventListener("change",(function(){t._blazorFilesById={};const n=Array.prototype.map.call(t.files,(function(e){const n={id:++t._blazorInputFileNextFileId,lastModified:new Date(e.lastModified).toISOString(),name:e.name,size:e.size,contentType:e.type,readPromise:void 0,arrayBuffer:void 0,blob:e};return t._blazorFilesById[n.id]=n,n}));e.invokeMethodAsync("NotifyChange",n)}))},toImageFile:async function(e,t,n,r,o){const i=Ke(e,t),s=await new Promise((function(e){const t=new Image;t.onload=function(){URL.revokeObjectURL(t.src),e(t)},t.onerror=function(){t.onerror=null,URL.revokeObjectURL(t.src)},t.src=URL.createObjectURL(i.blob)})),a=await new Promise((function(e){const t=Math.min(1,r/s.width),i=Math.min(1,o/s.height),a=Math.min(t,i),c=document.createElement("canvas");c.width=Math.round(s.width*a),c.height=Math.round(s.height*a),c.getContext("2d")?.drawImage(s,0,0,c.width,c.height),c.toBlob(e,n)})),c={id:++e._blazorInputFileNextFileId,lastModified:i.lastModified,name:i.name,size:a?.size||0,contentType:n,blob:a||i.blob};return e._blazorFilesById[c.id]=c,c},readFileData:async function(e,t){return Ke(e,t).blob}};function Ke(e,t){const n=e._blazorFilesById[t];if(!n)throw new Error(`There is no file with ID ${t}. The file list may have changed. See https://aka.ms/aspnet/blazor-input-file-multiple-selections.`);return n}const Xe=new Set;function Ge(e){e.preventDefault(),e.returnValue=!0}async function Ye(e,t,n){return e instanceof Blob?await async function(e,t,n){const r=e.slice(t,t+n),o=await r.arrayBuffer();return new Uint8Array(o)}(e,t,n):function(e,t,n){return new Uint8Array(e.buffer,e.byteOffset+t,n)}(e,t,n)}const Qe={navigateTo:function(e,t,n=!1){Pe(e,t instanceof Object?t:{forceLoad:t,replaceHistoryEntry:n})},registerCustomEventType:function(e,t){if(!t)throw new Error("The options parameter is required.");if(o.has(e))throw new Error(`The event '${e}' is already registered.`);if(t.browserEventName){const n=i.get(t.browserEventName);n?n.push(e):i.set(t.browserEventName,[e]),s.forEach((n=>n(e,t.browserEventName)))}o.set(e,t)},rootComponents:y,runtime:{},_internal:{navigationManager:Ae,domWrapper:Fe,Virtualize:je,PageTitle:Je,InputFile:Ve,NavigationLock:{enableNavigationPrompt:function(e){0===Xe.size&&window.addEventListener("beforeunload",Ge),Xe.add(e)},disableNavigationPrompt:function(e){Xe.delete(e),0===Xe.size&&window.removeEventListener("beforeunload",Ge)}},getJSDataStreamChunk:Ye,attachWebRendererInterop:E}};var Ze;function et(e){const t={...tt,...e};return e&&e.reconnectionOptions&&(t.reconnectionOptions={...tt.reconnectionOptions,...e.reconnectionOptions}),t}window.Blazor=Qe,function(e){e[e.Trace=0]="Trace",e[e.Debug=1]="Debug",e[e.Information=2]="Information",e[e.Warning=3]="Warning",e[e.Error=4]="Error",e[e.Critical=5]="Critical",e[e.None=6]="None"}(Ze||(Ze={}));const tt={configureSignalR:e=>{},logLevel:Ze.Warning,initializers:void 0,circuitHandlers:[],reconnectionOptions:{maxRetries:30,retryIntervalMilliseconds:function(e,t){return t&&e>=t?null:e<10?0:e<20?5e3:3e4},dialogId:"components-reconnect-modal"}};(class e{static{this.instance=new e}log(e,t){}});let nt=class{constructor(e){this.minLevel=e}log(e,t){if(e>=this.minLevel){const n=`[${(new Date).toISOString()}] ${Ze[e]}: ${t}`;switch(e){case Ze.Critical:case Ze.Error:console.error(n);break;case Ze.Warning:console.warn(n);break;case Ze.Information:console.info(n);break;default:console.log(n)}}}};const rt=/^\s*Blazor-Server-Component-State:(?[a-zA-Z0-9+/=]+)$/;function ot(e){return it(e,rt)}function it(e,t,n="state"){if(e.nodeType===Node.COMMENT_NODE){const r=e.textContent||"",o=t.exec(r),i=o&&o.groups&&o.groups[n];return i&&e.parentNode?.removeChild(e),i}if(!e.hasChildNodes())return;const r=e.childNodes;for(let e=0;e.*)$/);function ct(e,t){const n=e.currentElement;var r,o,i;if(n&&n.nodeType===Node.COMMENT_NODE&&n.textContent){const s=at.exec(n.textContent),a=s&&s.groups&&s.groups.descriptor;if(!a)return;!function(e){if(e.parentNode instanceof Document)throw new Error("Root components cannot be marked as interactive. The element must be rendered statically so that scripts are not evaluated multiple times.")}(n);try{const s=function(e){const t=JSON.parse(e),{type:n}=t;if("server"!==n&&"webassembly"!==n&&"auto"!==n)throw new Error(`Invalid component type '${n}'.`);return t}(a),c=function(e,t,n){const{prerenderId:r}=e;if(r){for(;n.next()&&n.currentElement;){const e=n.currentElement;if(e.nodeType!==Node.COMMENT_NODE)continue;if(!e.textContent)continue;const t=at.exec(e.textContent),o=t&&t[1];if(o)return dt(o,r),e}throw new Error(`Could not find an end component comment for '${t}'.`)}}(s,n,e);if(t!==s.type)return;switch(s.type){case"webassembly":return o=n,i=c,ut(r=s),{...r,uniqueId:lt++,start:o,end:i};case"server":return function(e,t,n){return ht(e),{...e,uniqueId:lt++,start:t,end:n}}(s,n,c);case"auto":return function(e,t,n){return ht(e),ut(e),{...e,uniqueId:lt++,start:t,end:n}}(s,n,c)}}catch(e){throw new Error(`Found malformed component comment at ${n.textContent}`)}}}let lt=0;function ht(e){const{descriptor:t,sequence:n}=e;if(!t)throw new Error("descriptor must be defined when using a descriptor.");if(void 0===n)throw new Error("sequence must be defined when using a descriptor.");if(!Number.isInteger(n))throw new Error(`Error parsing the sequence '${n}' for component '${JSON.stringify(e)}'`)}function ut(e){const{assembly:t,typeName:n}=e;if(!t)throw new Error("assembly must be defined when using a descriptor.");if(!n)throw new Error("typeName must be defined when using a descriptor.");e.parameterDefinitions=e.parameterDefinitions&&atob(e.parameterDefinitions),e.parameterValues=e.parameterValues&&atob(e.parameterValues)}function dt(e,t){const n=JSON.parse(e);if(1!==Object.keys(n).length)throw new Error(`Invalid end of component comment: '${e}'`);const r=n.prerenderId;if(!r)throw new Error(`End of component comment must have a value for the prerendered property: '${e}'`);if(r!==t)throw new Error(`End of component comment prerendered property must match the start comment prerender id: '${t}', '${r}'`)}class pt{constructor(e){this.childNodes=e,this.currentIndex=-1,this.length=e.length}next(){return this.currentIndex++,this.currentIndex{n+=`0x${e<16?"0":""}${e.toString(16)} `})),n.substring(0,n.length-1)}(e)}'`)):"string"==typeof e&&(n=`String data of length ${e.length}`,t&&(n+=`. Content: '${e}'`)),n}function At(e){return e&&"undefined"!=typeof ArrayBuffer&&(e instanceof ArrayBuffer||e.constructor&&"ArrayBuffer"===e.constructor.name)}async function Pt(e,t,n,r,o,i){const s={},[a,c]=Ut();s[a]=c,e.log(Et.Trace,`(${t} transport) sending data. ${xt(o,i.logMessageContent)}.`);const l=At(o)?"arraybuffer":"text",h=await n.post(r,{content:o,headers:{...s,...i.headers},responseType:l,timeout:i.timeout,withCredentials:i.withCredentials});e.log(Et.Trace,`(${t} transport) request complete. Response status: ${h.statusCode}.`)}class Nt{constructor(e,t){this._subject=e,this._observer=t}dispose(){const e=this._subject.observers.indexOf(this._observer);e>-1&&this._subject.observers.splice(e,1),0===this._subject.observers.length&&this._subject.cancelCallback&&this._subject.cancelCallback().catch((e=>{}))}}class Mt{constructor(e){this._minLevel=e,this.out=console}log(e,t){if(e>=this._minLevel){const n=`[${(new Date).toISOString()}] ${Et[e]}: ${t}`;switch(e){case Et.Critical:case Et.Error:this.out.error(n);break;case Et.Warning:this.out.warn(n);break;case Et.Information:this.out.info(n);break;default:this.out.log(n)}}}}function Ut(){return["X-SignalR-User-Agent",Bt("10.0.1","","Browser",void 0)]}function Bt(e,t,n,r){let o="Microsoft SignalR/";const i=e.split(".");return o+=`${i[0]}.${i[1]}`,o+=` (${e}; `,o+=t&&""!==t?`${t}; `:"Unknown OS; ",o+=`${n}`,o+=r?`; ${r}`:"; Unknown Runtime Version",o+=")",o}function Lt(e){return e.stack?e.stack:e.message?e.message:`${e}`}class $t extends Ct{constructor(e){if(super(),this._logger=e,"undefined"==typeof fetch){const e="function"==typeof __webpack_require__?__non_webpack_require__:require;this._jar=new(e("tough-cookie").CookieJar),"undefined"==typeof fetch?this._fetchType=e("node-fetch"):this._fetchType=fetch,this._fetchType=e("fetch-cookie")(this._fetchType,this._jar)}else this._fetchType=fetch.bind(function(){if("undefined"!=typeof globalThis)return globalThis;if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if("undefined"!=typeof global)return global;throw new Error("could not find global")}());if("undefined"==typeof AbortController){const e="function"==typeof __webpack_require__?__non_webpack_require__:require;this._abortControllerType=e("abort-controller")}else this._abortControllerType=AbortController}async send(e){if(e.abortSignal&&e.abortSignal.aborted)throw new mt;if(!e.method)throw new Error("No method defined.");if(!e.url)throw new Error("No url defined.");const t=new this._abortControllerType;let n;e.abortSignal&&(e.abortSignal.onabort=()=>{t.abort(),n=new mt});let r,o=null;if(e.timeout){const r=e.timeout;o=setTimeout((()=>{t.abort(),this._logger.log(Et.Warning,"Timeout from HTTP request."),n=new gt}),r)}""===e.content&&(e.content=void 0),e.content&&(e.headers=e.headers||{},At(e.content)?e.headers["Content-Type"]="application/octet-stream":e.headers["Content-Type"]="text/plain;charset=UTF-8");try{r=await this._fetchType(e.url,{body:e.content,cache:"no-cache",credentials:!0===e.withCredentials?"include":"same-origin",headers:{"X-Requested-With":"XMLHttpRequest",...e.headers},method:e.method,mode:"cors",redirect:"follow",signal:t.signal})}catch(e){if(n)throw n;throw this._logger.log(Et.Warning,`Error from HTTP request. ${e}.`),e}finally{o&&clearTimeout(o),e.abortSignal&&(e.abortSignal.onabort=null)}if(!r.ok){const e=await Ot(r,"text");throw new ft(e||r.statusText,r.status)}const i=Ot(r,e.responseType),s=await i;return new St(r.status,r.statusText,s)}getCookieString(e){return""}}function Ot(e,t){let n;switch(t){case"arraybuffer":n=e.arrayBuffer();break;case"text":default:n=e.text();break;case"blob":case"document":case"json":throw new Error(`${t} is not supported.`)}return n}class Ht extends Ct{constructor(e){super(),this._logger=e}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new mt):e.method?e.url?new Promise(((t,n)=>{const r=new XMLHttpRequest;r.open(e.method,e.url,!0),r.withCredentials=void 0===e.withCredentials||e.withCredentials,r.setRequestHeader("X-Requested-With","XMLHttpRequest"),""===e.content&&(e.content=void 0),e.content&&(At(e.content)?r.setRequestHeader("Content-Type","application/octet-stream"):r.setRequestHeader("Content-Type","text/plain;charset=UTF-8"));const o=e.headers;o&&Object.keys(o).forEach((e=>{r.setRequestHeader(e,o[e])})),e.responseType&&(r.responseType=e.responseType),e.abortSignal&&(e.abortSignal.onabort=()=>{r.abort(),n(new mt)}),e.timeout&&(r.timeout=e.timeout),r.onload=()=>{e.abortSignal&&(e.abortSignal.onabort=null),r.status>=200&&r.status<300?t(new St(r.status,r.statusText,r.response||r.responseText)):n(new ft(r.response||r.responseText||r.statusText,r.status))},r.onerror=()=>{this._logger.log(Et.Warning,`Error from HTTP request. ${r.status}: ${r.statusText}.`),n(new ft(r.statusText,r.status))},r.ontimeout=()=>{this._logger.log(Et.Warning,"Timeout from HTTP request."),n(new gt)},r.send(e.content)})):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}}class Ft extends Ct{constructor(e){if(super(),"undefined"!=typeof fetch)this._httpClient=new $t(e);else{if("undefined"==typeof XMLHttpRequest)throw new Error("No usable HttpClient found.");this._httpClient=new Ht(e)}}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new mt):e.method?e.url?this._httpClient.send(e):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}getCookieString(e){return this._httpClient.getCookieString(e)}}class jt{static write(e){return`${e}${jt.RecordSeparator}`}static parse(e){if(e[e.length-1]!==jt.RecordSeparator)throw new Error("Message is incomplete.");const t=e.split(jt.RecordSeparator);return t.pop(),t}}jt.RecordSeparatorCode=30,jt.RecordSeparator=String.fromCharCode(jt.RecordSeparatorCode);class Wt{writeHandshakeRequest(e){return jt.write(JSON.stringify(e))}parseHandshakeResponse(e){let t,n;if(At(e)){const r=new Uint8Array(e),o=r.indexOf(jt.RecordSeparatorCode);if(-1===o)throw new Error("Message is incomplete.");const i=o+1;t=String.fromCharCode.apply(null,Array.prototype.slice.call(r.slice(0,i))),n=r.byteLength>i?r.slice(i).buffer:null}else{const r=e,o=r.indexOf(jt.RecordSeparator);if(-1===o)throw new Error("Message is incomplete.");const i=o+1;t=r.substring(0,i),n=r.length>i?r.substring(i):null}const r=jt.parse(t),o=JSON.parse(r[0]);if(o.type)throw new Error("Expected a handshake response from the server.");return[n,o]}}!function(e){e[e.Invocation=1]="Invocation",e[e.StreamItem=2]="StreamItem",e[e.Completion=3]="Completion",e[e.StreamInvocation=4]="StreamInvocation",e[e.CancelInvocation=5]="CancelInvocation",e[e.Ping=6]="Ping",e[e.Close=7]="Close",e[e.Ack=8]="Ack",e[e.Sequence=9]="Sequence"}(It||(It={}));class zt{constructor(){this.observers=[]}next(e){for(const t of this.observers)t.next(e)}error(e){for(const t of this.observers)t.error&&t.error(e)}complete(){for(const e of this.observers)e.complete&&e.complete()}subscribe(e){return this.observers.push(e),new Nt(this,e)}}class qt{constructor(e,t,n){this._bufferSize=1e5,this._messages=[],this._totalMessageCount=0,this._waitForSequenceMessage=!1,this._nextReceivingSequenceId=1,this._latestReceivedSequenceId=0,this._bufferedByteCount=0,this._reconnectInProgress=!1,this._protocol=e,this._connection=t,this._bufferSize=n}async _send(e){const t=this._protocol.writeMessage(e);let n=Promise.resolve();if(this._isInvocationMessage(e)){this._totalMessageCount++;let e=()=>{},r=()=>{};At(t)?this._bufferedByteCount+=t.byteLength:this._bufferedByteCount+=t.length,this._bufferedByteCount>=this._bufferSize&&(n=new Promise(((t,n)=>{e=t,r=n}))),this._messages.push(new Jt(t,this._totalMessageCount,e,r))}try{this._reconnectInProgress||await this._connection.send(t)}catch{this._disconnected()}await n}_ack(e){let t=-1;for(let n=0;nthis._nextReceivingSequenceId?this._connection.stop(new Error("Sequence ID greater than amount of messages we've received.")):this._nextReceivingSequenceId=e.sequenceId}_disconnected(){this._reconnectInProgress=!0,this._waitForSequenceMessage=!0}async _resend(){const e=0!==this._messages.length?this._messages[0]._id:this._totalMessageCount+1;await this._connection.send(this._protocol.writeMessage({type:It.Sequence,sequenceId:e}));const t=this._messages;for(const e of t)await this._connection.send(e._message);this._reconnectInProgress=!1}_dispose(e){null!=e||(e=new Error("Unable to reconnect to server."));for(const t of this._messages)t._rejector(e)}_isInvocationMessage(e){switch(e.type){case It.Invocation:case It.StreamItem:case It.Completion:case It.StreamInvocation:case It.CancelInvocation:return!0;case It.Close:case It.Sequence:case It.Ping:case It.Ack:return!1}}_ackTimer(){void 0===this._ackTimerHandle&&(this._ackTimerHandle=setTimeout((async()=>{try{this._reconnectInProgress||await this._connection.send(this._protocol.writeMessage({type:It.Ack,sequenceId:this._latestReceivedSequenceId}))}catch{}clearTimeout(this._ackTimerHandle),this._ackTimerHandle=void 0}),1e3))}}class Jt{constructor(e,t,n,r){this._message=e,this._id=t,this._resolver=n,this._rejector=r}}!function(e){e.Disconnected="Disconnected",e.Connecting="Connecting",e.Connected="Connected",e.Disconnecting="Disconnecting",e.Reconnecting="Reconnecting"}(kt||(kt={}));class Vt{static create(e,t,n,r,o,i,s){return new Vt(e,t,n,r,o,i,s)}constructor(e,t,n,r,o,i,s){this._nextKeepAlive=0,this._freezeEventListener=()=>{this._logger.log(Et.Warning,"The page is being frozen, this will likely lead to the connection being closed and messages being lost. For more information see the docs at https://learn.microsoft.com/aspnet/core/signalr/javascript-client#bsleep")},Rt.isRequired(e,"connection"),Rt.isRequired(t,"logger"),Rt.isRequired(n,"protocol"),this.serverTimeoutInMilliseconds=null!=o?o:3e4,this.keepAliveIntervalInMilliseconds=null!=i?i:15e3,this._statefulReconnectBufferSize=null!=s?s:1e5,this._logger=t,this._protocol=n,this.connection=e,this._reconnectPolicy=r,this._handshakeProtocol=new Wt,this.connection.onreceive=e=>this._processIncomingData(e),this.connection.onclose=e=>this._connectionClosed(e),this._callbacks={},this._methods={},this._closedCallbacks=[],this._reconnectingCallbacks=[],this._reconnectedCallbacks=[],this._invocationId=0,this._receivedHandshakeResponse=!1,this._connectionState=kt.Disconnected,this._connectionStarted=!1,this._cachedPingMessage=this._protocol.writeMessage({type:It.Ping})}get state(){return this._connectionState}get connectionId(){return this.connection&&this.connection.connectionId||null}get baseUrl(){return this.connection.baseUrl||""}set baseUrl(e){if(this._connectionState!==kt.Disconnected&&this._connectionState!==kt.Reconnecting)throw new Error("The HubConnection must be in the Disconnected or Reconnecting state to change the url.");if(!e)throw new Error("The HubConnection url must be a valid url.");this.connection.baseUrl=e}start(){return this._startPromise=this._startWithStateTransitions(),this._startPromise}async _startWithStateTransitions(){if(this._connectionState!==kt.Disconnected)return Promise.reject(new Error("Cannot start a HubConnection that is not in the 'Disconnected' state."));this._connectionState=kt.Connecting,this._logger.log(Et.Debug,"Starting HubConnection.");try{await this._startInternal(),Dt.isBrowser&&window.document.addEventListener("freeze",this._freezeEventListener),this._connectionState=kt.Connected,this._connectionStarted=!0,this._logger.log(Et.Debug,"HubConnection connected successfully.")}catch(e){return this._connectionState=kt.Disconnected,this._logger.log(Et.Debug,`HubConnection failed to start successfully because of error '${e}'.`),Promise.reject(e)}}async _startInternal(){this._stopDuringStartError=void 0,this._receivedHandshakeResponse=!1;const e=new Promise(((e,t)=>{this._handshakeResolver=e,this._handshakeRejecter=t}));await this.connection.start(this._protocol.transferFormat);try{let t=this._protocol.version;this.connection.features.reconnect||(t=1);const n={protocol:this._protocol.name,version:t};if(this._logger.log(Et.Debug,"Sending handshake request."),await this._sendMessage(this._handshakeProtocol.writeHandshakeRequest(n)),this._logger.log(Et.Information,`Using HubProtocol '${this._protocol.name}'.`),this._cleanupTimeout(),this._resetTimeoutPeriod(),this._resetKeepAliveInterval(),await e,this._stopDuringStartError)throw this._stopDuringStartError;!!this.connection.features.reconnect&&(this._messageBuffer=new qt(this._protocol,this.connection,this._statefulReconnectBufferSize),this.connection.features.disconnected=this._messageBuffer._disconnected.bind(this._messageBuffer),this.connection.features.resend=()=>{if(this._messageBuffer)return this._messageBuffer._resend()}),this.connection.features.inherentKeepAlive||await this._sendMessage(this._cachedPingMessage)}catch(e){throw this._logger.log(Et.Debug,`Hub handshake failed with error '${e}' during start(). Stopping HubConnection.`),this._cleanupTimeout(),this._cleanupPingTimer(),await this.connection.stop(e),e}}async stop(){const e=this._startPromise;this.connection.features.reconnect=!1,this._stopPromise=this._stopInternal(),await this._stopPromise;try{await e}catch(e){}}_stopInternal(e){if(this._connectionState===kt.Disconnected)return this._logger.log(Et.Debug,`Call to HubConnection.stop(${e}) ignored because it is already in the disconnected state.`),Promise.resolve();if(this._connectionState===kt.Disconnecting)return this._logger.log(Et.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise;const t=this._connectionState;return this._connectionState=kt.Disconnecting,this._logger.log(Et.Debug,"Stopping HubConnection."),this._reconnectDelayHandle?(this._logger.log(Et.Debug,"Connection stopped during reconnect delay. Done reconnecting."),clearTimeout(this._reconnectDelayHandle),this._reconnectDelayHandle=void 0,this._completeClose(),Promise.resolve()):(t===kt.Connected&&this._sendCloseMessage(),this._cleanupTimeout(),this._cleanupPingTimer(),this._stopDuringStartError=e||new mt("The connection was stopped before the hub handshake could complete."),this.connection.stop(e))}async _sendCloseMessage(){try{await this._sendWithProtocol(this._createCloseMessage())}catch{}}stream(e,...t){const[n,r]=this._replaceStreamingParams(t),o=this._createStreamInvocation(e,t,r);let i;const s=new zt;return s.cancelCallback=()=>{const e=this._createCancelInvocation(o.invocationId);return delete this._callbacks[o.invocationId],i.then((()=>this._sendWithProtocol(e)))},this._callbacks[o.invocationId]=(e,t)=>{t?s.error(t):e&&(e.type===It.Completion?e.error?s.error(new Error(e.error)):s.complete():s.next(e.item))},i=this._sendWithProtocol(o).catch((e=>{s.error(e),delete this._callbacks[o.invocationId]})),this._launchStreams(n,i),s}_sendMessage(e){return this._resetKeepAliveInterval(),this.connection.send(e)}_sendWithProtocol(e){return this._messageBuffer?this._messageBuffer._send(e):this._sendMessage(this._protocol.writeMessage(e))}send(e,...t){const[n,r]=this._replaceStreamingParams(t),o=this._sendWithProtocol(this._createInvocation(e,t,!0,r));return this._launchStreams(n,o),o}invoke(e,...t){const[n,r]=this._replaceStreamingParams(t),o=this._createInvocation(e,t,!1,r);return new Promise(((e,t)=>{this._callbacks[o.invocationId]=(n,r)=>{r?t(r):n&&(n.type===It.Completion?n.error?t(new Error(n.error)):e(n.result):t(new Error(`Unexpected message type: ${n.type}`)))};const r=this._sendWithProtocol(o).catch((e=>{t(e),delete this._callbacks[o.invocationId]}));this._launchStreams(n,r)}))}on(e,t){e&&t&&(e=e.toLowerCase(),this._methods[e]||(this._methods[e]=[]),-1===this._methods[e].indexOf(t)&&this._methods[e].push(t))}off(e,t){if(!e)return;e=e.toLowerCase();const n=this._methods[e];if(n)if(t){const r=n.indexOf(t);-1!==r&&(n.splice(r,1),0===n.length&&delete this._methods[e])}else delete this._methods[e]}onclose(e){e&&this._closedCallbacks.push(e)}onreconnecting(e){e&&this._reconnectingCallbacks.push(e)}onreconnected(e){e&&this._reconnectedCallbacks.push(e)}_processIncomingData(e){if(this._cleanupTimeout(),this._receivedHandshakeResponse||(e=this._processHandshakeResponse(e),this._receivedHandshakeResponse=!0),e){const t=this._protocol.parseMessages(e,this._logger);for(const e of t)if(!this._messageBuffer||this._messageBuffer._shouldProcessMessage(e))switch(e.type){case It.Invocation:this._invokeClientMethod(e).catch((e=>{this._logger.log(Et.Error,`Invoke client method threw error: ${Lt(e)}`)}));break;case It.StreamItem:case It.Completion:{const t=this._callbacks[e.invocationId];if(t){e.type===It.Completion&&delete this._callbacks[e.invocationId];try{t(e)}catch(e){this._logger.log(Et.Error,`Stream callback threw error: ${Lt(e)}`)}}break}case It.Ping:break;case It.Close:{this._logger.log(Et.Information,"Close message received from server.");const t=e.error?new Error("Server returned an error on close: "+e.error):void 0;!0===e.allowReconnect?this.connection.stop(t):this._stopPromise=this._stopInternal(t);break}case It.Ack:this._messageBuffer&&this._messageBuffer._ack(e);break;case It.Sequence:this._messageBuffer&&this._messageBuffer._resetSequence(e);break;default:this._logger.log(Et.Warning,`Invalid message type: ${e.type}.`)}}this._resetTimeoutPeriod()}_processHandshakeResponse(e){let t,n;try{[n,t]=this._handshakeProtocol.parseHandshakeResponse(e)}catch(e){const t="Error parsing handshake response: "+e;this._logger.log(Et.Error,t);const n=new Error(t);throw this._handshakeRejecter(n),n}if(t.error){const e="Server returned handshake error: "+t.error;this._logger.log(Et.Error,e);const n=new Error(e);throw this._handshakeRejecter(n),n}return this._logger.log(Et.Debug,"Server handshake complete."),this._handshakeResolver(),n}_resetKeepAliveInterval(){this.connection.features.inherentKeepAlive||(this._nextKeepAlive=(new Date).getTime()+this.keepAliveIntervalInMilliseconds,this._cleanupPingTimer())}_resetTimeoutPeriod(){if(!this.connection.features||!this.connection.features.inherentKeepAlive){this._timeoutHandle=setTimeout((()=>this.serverTimeout()),this.serverTimeoutInMilliseconds);let e=this._nextKeepAlive-(new Date).getTime();if(e<0)return void(this._connectionState===kt.Connected&&this._trySendPingMessage());void 0===this._pingServerHandle&&(e<0&&(e=0),this._pingServerHandle=setTimeout((async()=>{this._connectionState===kt.Connected&&await this._trySendPingMessage()}),e))}}serverTimeout(){this.connection.stop(new Error("Server timeout elapsed without receiving a message from the server."))}async _invokeClientMethod(e){const t=e.target.toLowerCase(),n=this._methods[t];if(!n)return this._logger.log(Et.Warning,`No client method with the name '${t}' found.`),void(e.invocationId&&(this._logger.log(Et.Warning,`No result given for '${t}' method and invocation ID '${e.invocationId}'.`),await this._sendWithProtocol(this._createCompletionMessage(e.invocationId,"Client didn't provide a result.",null))));const r=n.slice(),o=!!e.invocationId;let i,s,a;for(const n of r)try{const r=i;i=await n.apply(this,e.arguments),o&&i&&r&&(this._logger.log(Et.Error,`Multiple results provided for '${t}'. Sending error to server.`),a=this._createCompletionMessage(e.invocationId,"Client provided multiple results.",null)),s=void 0}catch(e){s=e,this._logger.log(Et.Error,`A callback for the method '${t}' threw error '${e}'.`)}a?await this._sendWithProtocol(a):o?(s?a=this._createCompletionMessage(e.invocationId,`${s}`,null):void 0!==i?a=this._createCompletionMessage(e.invocationId,null,i):(this._logger.log(Et.Warning,`No result given for '${t}' method and invocation ID '${e.invocationId}'.`),a=this._createCompletionMessage(e.invocationId,"Client didn't provide a result.",null)),await this._sendWithProtocol(a)):i&&this._logger.log(Et.Error,`Result given for '${t}' method but server is not expecting a result.`)}_connectionClosed(e){this._logger.log(Et.Debug,`HubConnection.connectionClosed(${e}) called while in state ${this._connectionState}.`),this._stopDuringStartError=this._stopDuringStartError||e||new mt("The underlying connection was closed before the hub handshake could complete."),this._handshakeResolver&&this._handshakeResolver(),this._cancelCallbacksWithError(e||new Error("Invocation canceled due to the underlying connection being closed.")),this._cleanupTimeout(),this._cleanupPingTimer(),this._connectionState===kt.Disconnecting?this._completeClose(e):this._connectionState===kt.Connected&&this._reconnectPolicy?this._reconnect(e):this._connectionState===kt.Connected&&this._completeClose(e)}_completeClose(e){if(this._connectionStarted){this._connectionState=kt.Disconnected,this._connectionStarted=!1,this._messageBuffer&&(this._messageBuffer._dispose(null!=e?e:new Error("Connection closed.")),this._messageBuffer=void 0),Dt.isBrowser&&window.document.removeEventListener("freeze",this._freezeEventListener);try{this._closedCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(Et.Error,`An onclose callback called with error '${e}' threw error '${t}'.`)}}}async _reconnect(e){const t=Date.now();let n=0,r=void 0!==e?e:new Error("Attempting to reconnect due to a unknown error."),o=this._getNextRetryDelay(n,0,r);if(null===o)return this._logger.log(Et.Debug,"Connection not reconnecting because the IRetryPolicy returned null on the first reconnect attempt."),void this._completeClose(e);if(this._connectionState=kt.Reconnecting,e?this._logger.log(Et.Information,`Connection reconnecting because of error '${e}'.`):this._logger.log(Et.Information,"Connection reconnecting."),0!==this._reconnectingCallbacks.length){try{this._reconnectingCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(Et.Error,`An onreconnecting callback called with error '${e}' threw error '${t}'.`)}if(this._connectionState!==kt.Reconnecting)return void this._logger.log(Et.Debug,"Connection left the reconnecting state in onreconnecting callback. Done reconnecting.")}for(;null!==o;){if(this._logger.log(Et.Information,`Reconnect attempt number ${n+1} will start in ${o} ms.`),await new Promise((e=>{this._reconnectDelayHandle=setTimeout(e,o)})),this._reconnectDelayHandle=void 0,this._connectionState!==kt.Reconnecting)return void this._logger.log(Et.Debug,"Connection left the reconnecting state during reconnect delay. Done reconnecting.");try{if(await this._startInternal(),this._connectionState=kt.Connected,this._logger.log(Et.Information,"HubConnection reconnected successfully."),0!==this._reconnectedCallbacks.length)try{this._reconnectedCallbacks.forEach((e=>e.apply(this,[this.connection.connectionId])))}catch(e){this._logger.log(Et.Error,`An onreconnected callback called with connectionId '${this.connection.connectionId}; threw error '${e}'.`)}return}catch(e){if(this._logger.log(Et.Information,`Reconnect attempt failed because of error '${e}'.`),this._connectionState!==kt.Reconnecting)return this._logger.log(Et.Debug,`Connection moved to the '${this._connectionState}' from the reconnecting state during reconnect attempt. Done reconnecting.`),void(this._connectionState===kt.Disconnecting&&this._completeClose());n++,r=e instanceof Error?e:new Error(e.toString()),o=this._getNextRetryDelay(n,Date.now()-t,r)}}this._logger.log(Et.Information,`Reconnect retries have been exhausted after ${Date.now()-t} ms and ${n} failed attempts. Connection disconnecting.`),this._completeClose()}_getNextRetryDelay(e,t,n){try{return this._reconnectPolicy.nextRetryDelayInMilliseconds({elapsedMilliseconds:t,previousRetryCount:e,retryReason:n})}catch(n){return this._logger.log(Et.Error,`IRetryPolicy.nextRetryDelayInMilliseconds(${e}, ${t}) threw error '${n}'.`),null}}_cancelCallbacksWithError(e){const t=this._callbacks;this._callbacks={},Object.keys(t).forEach((n=>{const r=t[n];try{r(null,e)}catch(t){this._logger.log(Et.Error,`Stream 'error' callback called with '${e}' threw error: ${Lt(t)}`)}}))}_cleanupPingTimer(){this._pingServerHandle&&(clearTimeout(this._pingServerHandle),this._pingServerHandle=void 0)}_cleanupTimeout(){this._timeoutHandle&&clearTimeout(this._timeoutHandle)}_createInvocation(e,t,n,r){if(n)return 0!==r.length?{target:e,arguments:t,streamIds:r,type:It.Invocation}:{target:e,arguments:t,type:It.Invocation};{const n=this._invocationId;return this._invocationId++,0!==r.length?{target:e,arguments:t,invocationId:n.toString(),streamIds:r,type:It.Invocation}:{target:e,arguments:t,invocationId:n.toString(),type:It.Invocation}}}_launchStreams(e,t){if(0!==e.length){t||(t=Promise.resolve());for(const n in e)e[n].subscribe({complete:()=>{t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n))))},error:e=>{let r;r=e instanceof Error?e.message:e&&e.toString?e.toString():"Unknown error",t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n,r))))},next:e=>{t=t.then((()=>this._sendWithProtocol(this._createStreamItemMessage(n,e))))}})}}_replaceStreamingParams(e){const t=[],n=[];for(let r=0;r0)&&(t=!1,this._accessToken=await this._accessTokenFactory()),this._setAuthorizationHeader(e);const n=await this._innerClient.send(e);return t&&401===n.statusCode&&this._accessTokenFactory?(this._accessToken=await this._accessTokenFactory(),this._setAuthorizationHeader(e),await this._innerClient.send(e)):n}_setAuthorizationHeader(e){e.headers||(e.headers={}),this._accessToken?e.headers[Gt.Authorization]=`Bearer ${this._accessToken}`:this._accessTokenFactory&&e.headers[Gt.Authorization]&&delete e.headers[Gt.Authorization]}getCookieString(e){return this._innerClient.getCookieString(e)}}var Qt,Zt;!function(e){e[e.None=0]="None",e[e.WebSockets=1]="WebSockets",e[e.ServerSentEvents=2]="ServerSentEvents",e[e.LongPolling=4]="LongPolling"}(Qt||(Qt={})),function(e){e[e.Text=1]="Text",e[e.Binary=2]="Binary"}(Zt||(Zt={}));let en=class{constructor(){this._isAborted=!1,this.onabort=null}abort(){this._isAborted||(this._isAborted=!0,this.onabort&&this.onabort())}get signal(){return this}get aborted(){return this._isAborted}};class tn{get pollAborted(){return this._pollAbort.aborted}constructor(e,t,n){this._httpClient=e,this._logger=t,this._pollAbort=new en,this._options=n,this._running=!1,this.onreceive=null,this.onclose=null}async connect(e,t){if(Rt.isRequired(e,"url"),Rt.isRequired(t,"transferFormat"),Rt.isIn(t,Zt,"transferFormat"),this._url=e,this._logger.log(Et.Trace,"(LongPolling transport) Connecting."),t===Zt.Binary&&"undefined"!=typeof XMLHttpRequest&&"string"!=typeof(new XMLHttpRequest).responseType)throw new Error("Binary protocols over XmlHttpRequest not implementing advanced features are not supported.");const[n,r]=Ut(),o={[n]:r,...this._options.headers},i={abortSignal:this._pollAbort.signal,headers:o,timeout:1e5,withCredentials:this._options.withCredentials};t===Zt.Binary&&(i.responseType="arraybuffer");const s=`${e}&_=${Date.now()}`;this._logger.log(Et.Trace,`(LongPolling transport) polling: ${s}.`);const a=await this._httpClient.get(s,i);200!==a.statusCode?(this._logger.log(Et.Error,`(LongPolling transport) Unexpected response code: ${a.statusCode}.`),this._closeError=new ft(a.statusText||"",a.statusCode),this._running=!1):this._running=!0,this._receiving=this._poll(this._url,i)}async _poll(e,t){try{for(;this._running;)try{const n=`${e}&_=${Date.now()}`;this._logger.log(Et.Trace,`(LongPolling transport) polling: ${n}.`);const r=await this._httpClient.get(n,t);204===r.statusCode?(this._logger.log(Et.Information,"(LongPolling transport) Poll terminated by server."),this._running=!1):200!==r.statusCode?(this._logger.log(Et.Error,`(LongPolling transport) Unexpected response code: ${r.statusCode}.`),this._closeError=new ft(r.statusText||"",r.statusCode),this._running=!1):r.content?(this._logger.log(Et.Trace,`(LongPolling transport) data received. ${xt(r.content,this._options.logMessageContent)}.`),this.onreceive&&this.onreceive(r.content)):this._logger.log(Et.Trace,"(LongPolling transport) Poll timed out, reissuing.")}catch(e){this._running?e instanceof gt?this._logger.log(Et.Trace,"(LongPolling transport) Poll timed out, reissuing."):(this._closeError=e,this._running=!1):this._logger.log(Et.Trace,`(LongPolling transport) Poll errored after shutdown: ${e.message}`)}}finally{this._logger.log(Et.Trace,"(LongPolling transport) Polling complete."),this.pollAborted||this._raiseOnClose()}}async send(e){return this._running?Pt(this._logger,"LongPolling",this._httpClient,this._url,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}async stop(){this._logger.log(Et.Trace,"(LongPolling transport) Stopping polling."),this._running=!1,this._pollAbort.abort();try{await this._receiving,this._logger.log(Et.Trace,`(LongPolling transport) sending DELETE request to ${this._url}.`);const e={},[t,n]=Ut();e[t]=n;const r={headers:{...e,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials};let o;try{await this._httpClient.delete(this._url,r)}catch(e){o=e}o?o instanceof ft&&(404===o.statusCode?this._logger.log(Et.Trace,"(LongPolling transport) A 404 response was returned from sending a DELETE request."):this._logger.log(Et.Trace,`(LongPolling transport) Error sending a DELETE request: ${o}`)):this._logger.log(Et.Trace,"(LongPolling transport) DELETE request accepted.")}finally{this._logger.log(Et.Trace,"(LongPolling transport) Stop finished."),this._raiseOnClose()}}_raiseOnClose(){if(this.onclose){let e="(LongPolling transport) Firing onclose event.";this._closeError&&(e+=" Error: "+this._closeError),this._logger.log(Et.Trace,e),this.onclose(this._closeError)}}}class nn{constructor(e,t,n,r){this._httpClient=e,this._accessToken=t,this._logger=n,this._options=r,this.onreceive=null,this.onclose=null}async connect(e,t){return Rt.isRequired(e,"url"),Rt.isRequired(t,"transferFormat"),Rt.isIn(t,Zt,"transferFormat"),this._logger.log(Et.Trace,"(SSE transport) Connecting."),this._url=e,this._accessToken&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(this._accessToken)}`),new Promise(((n,r)=>{let o,i=!1;if(t===Zt.Text){if(Dt.isBrowser||Dt.isWebWorker)o=new this._options.EventSource(e,{withCredentials:this._options.withCredentials});else{const t=this._httpClient.getCookieString(e),n={};n.Cookie=t;const[r,i]=Ut();n[r]=i,o=new this._options.EventSource(e,{withCredentials:this._options.withCredentials,headers:{...n,...this._options.headers}})}try{o.onmessage=e=>{if(this.onreceive)try{this._logger.log(Et.Trace,`(SSE transport) data received. ${xt(e.data,this._options.logMessageContent)}.`),this.onreceive(e.data)}catch(e){return void this._close(e)}},o.onerror=e=>{i?this._close():r(new Error("EventSource failed to connect. The connection could not be found on the server, either the connection ID is not present on the server, or a proxy is refusing/buffering the connection. If you have multiple servers check that sticky sessions are enabled."))},o.onopen=()=>{this._logger.log(Et.Information,`SSE connected to ${this._url}`),this._eventSource=o,i=!0,n()}}catch(e){return void r(e)}}else r(new Error("The Server-Sent Events transport only supports the 'Text' transfer format"))}))}async send(e){return this._eventSource?Pt(this._logger,"SSE",this._httpClient,this._url,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}stop(){return this._close(),Promise.resolve()}_close(e){this._eventSource&&(this._eventSource.close(),this._eventSource=void 0,this.onclose&&this.onclose(e))}}class rn{constructor(e,t,n,r,o,i){this._logger=n,this._accessTokenFactory=t,this._logMessageContent=r,this._webSocketConstructor=o,this._httpClient=e,this.onreceive=null,this.onclose=null,this._headers=i}async connect(e,t){let n;return Rt.isRequired(e,"url"),Rt.isRequired(t,"transferFormat"),Rt.isIn(t,Zt,"transferFormat"),this._logger.log(Et.Trace,"(WebSockets transport) Connecting."),this._accessTokenFactory&&(n=await this._accessTokenFactory()),new Promise(((r,o)=>{let i;e=e.replace(/^http/,"ws");const s=this._httpClient.getCookieString(e);let a=!1;if(Dt.isReactNative){const t={},[r,o]=Ut();t[r]=o,n&&(t[Gt.Authorization]=`Bearer ${n}`),s&&(t[Gt.Cookie]=s),i=new this._webSocketConstructor(e,void 0,{headers:{...t,...this._headers}})}else n&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(n)}`);i||(i=new this._webSocketConstructor(e)),t===Zt.Binary&&(i.binaryType="arraybuffer"),i.onopen=t=>{this._logger.log(Et.Information,`WebSocket connected to ${e}.`),this._webSocket=i,a=!0,r()},i.onerror=e=>{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"There was an error with the transport",this._logger.log(Et.Information,`(WebSockets transport) ${t}.`)},i.onmessage=e=>{if(this._logger.log(Et.Trace,`(WebSockets transport) data received. ${xt(e.data,this._logMessageContent)}.`),this.onreceive)try{this.onreceive(e.data)}catch(e){return void this._close(e)}},i.onclose=e=>{if(a)this._close(e);else{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled.",o(new Error(t))}}}))}send(e){return this._webSocket&&this._webSocket.readyState===this._webSocketConstructor.OPEN?(this._logger.log(Et.Trace,`(WebSockets transport) sending data. ${xt(e,this._logMessageContent)}.`),this._webSocket.send(e),Promise.resolve()):Promise.reject("WebSocket is not in the OPEN state")}stop(){return this._webSocket&&this._close(void 0),Promise.resolve()}_close(e){this._webSocket&&(this._webSocket.onclose=()=>{},this._webSocket.onmessage=()=>{},this._webSocket.onerror=()=>{},this._webSocket.close(),this._webSocket=void 0),this._logger.log(Et.Trace,"(WebSockets transport) socket closed."),this.onclose&&(!this._isCloseEvent(e)||!1!==e.wasClean&&1e3===e.code?e instanceof Error?this.onclose(e):this.onclose():this.onclose(new Error(`WebSocket closed with status code: ${e.code} (${e.reason||"no reason given"}).`)))}_isCloseEvent(e){return e&&"boolean"==typeof e.wasClean&&"number"==typeof e.code}}class on{constructor(e,t={}){if(this._stopPromiseResolver=()=>{},this.features={},this._negotiateVersion=1,Rt.isRequired(e,"url"),this._logger=function(e){return void 0===e?new Mt(Et.Information):null===e?Tt.instance:void 0!==e.log?e:new Mt(e)}(t.logger),this.baseUrl=this._resolveUrl(e),(t=t||{}).logMessageContent=void 0!==t.logMessageContent&&t.logMessageContent,"boolean"!=typeof t.withCredentials&&void 0!==t.withCredentials)throw new Error("withCredentials option was not a 'boolean' or 'undefined' value");t.withCredentials=void 0===t.withCredentials||t.withCredentials,t.timeout=void 0===t.timeout?1e5:t.timeout,"undefined"==typeof WebSocket||t.WebSocket||(t.WebSocket=WebSocket),"undefined"==typeof EventSource||t.EventSource||(t.EventSource=EventSource),this._httpClient=new Yt(t.httpClient||new Ft(this._logger),t.accessTokenFactory),this._connectionState="Disconnected",this._connectionStarted=!1,this._options=t,this.onreceive=null,this.onclose=null}async start(e){if(e=e||Zt.Binary,Rt.isIn(e,Zt,"transferFormat"),this._logger.log(Et.Debug,`Starting connection with transfer format '${Zt[e]}'.`),"Disconnected"!==this._connectionState)return Promise.reject(new Error("Cannot start an HttpConnection that is not in the 'Disconnected' state."));if(this._connectionState="Connecting",this._startInternalPromise=this._startInternal(e),await this._startInternalPromise,"Disconnecting"===this._connectionState){const e="Failed to start the HttpConnection before stop() was called.";return this._logger.log(Et.Error,e),await this._stopPromise,Promise.reject(new mt(e))}if("Connected"!==this._connectionState){const e="HttpConnection.startInternal completed gracefully but didn't enter the connection into the connected state!";return this._logger.log(Et.Error,e),Promise.reject(new mt(e))}this._connectionStarted=!0}send(e){return"Connected"!==this._connectionState?Promise.reject(new Error("Cannot send data if the connection is not in the 'Connected' State.")):(this._sendQueue||(this._sendQueue=new sn(this.transport)),this._sendQueue.send(e))}async stop(e){return"Disconnected"===this._connectionState?(this._logger.log(Et.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnected state.`),Promise.resolve()):"Disconnecting"===this._connectionState?(this._logger.log(Et.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise):(this._connectionState="Disconnecting",this._stopPromise=new Promise((e=>{this._stopPromiseResolver=e})),await this._stopInternal(e),void await this._stopPromise)}async _stopInternal(e){this._stopError=e;try{await this._startInternalPromise}catch(e){}if(this.transport){try{await this.transport.stop()}catch(e){this._logger.log(Et.Error,`HttpConnection.transport.stop() threw error '${e}'.`),this._stopConnection()}this.transport=void 0}else this._logger.log(Et.Debug,"HttpConnection.transport is undefined in HttpConnection.stop() because start() failed.")}async _startInternal(e){let t=this.baseUrl;this._accessTokenFactory=this._options.accessTokenFactory,this._httpClient._accessTokenFactory=this._accessTokenFactory;try{if(this._options.skipNegotiation){if(this._options.transport!==Qt.WebSockets)throw new Error("Negotiation can only be skipped when using the WebSocket transport directly.");this.transport=this._constructTransport(Qt.WebSockets),await this._startTransport(t,e)}else{let n=null,r=0;do{if(n=await this._getNegotiationResponse(t),"Disconnecting"===this._connectionState||"Disconnected"===this._connectionState)throw new mt("The connection was stopped during negotiation.");if(n.error)throw new Error(n.error);if(n.ProtocolVersion)throw new Error("Detected a connection attempt to an ASP.NET SignalR Server. This client only supports connecting to an ASP.NET Core SignalR Server. See https://aka.ms/signalr-core-differences for details.");if(n.url&&(t=n.url),n.accessToken){const e=n.accessToken;this._accessTokenFactory=()=>e,this._httpClient._accessToken=e,this._httpClient._accessTokenFactory=void 0}r++}while(n.url&&r<100);if(100===r&&n.url)throw new Error("Negotiate redirection limit exceeded.");await this._createTransport(t,this._options.transport,n,e)}this.transport instanceof tn&&(this.features.inherentKeepAlive=!0),"Connecting"===this._connectionState&&(this._logger.log(Et.Debug,"The HttpConnection connected successfully."),this._connectionState="Connected")}catch(e){return this._logger.log(Et.Error,"Failed to start the connection: "+e),this._connectionState="Disconnected",this.transport=void 0,this._stopPromiseResolver(),Promise.reject(e)}}async _getNegotiationResponse(e){const t={},[n,r]=Ut();t[n]=r;const o=this._resolveNegotiateUrl(e);this._logger.log(Et.Debug,`Sending negotiation request: ${o}.`);try{const e=await this._httpClient.post(o,{content:"",headers:{...t,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials});if(200!==e.statusCode)return Promise.reject(new Error(`Unexpected status code returned from negotiate '${e.statusCode}'`));const n=JSON.parse(e.content);return(!n.negotiateVersion||n.negotiateVersion<1)&&(n.connectionToken=n.connectionId),n.useStatefulReconnect&&!0!==this._options._useStatefulReconnect?Promise.reject(new wt("Client didn't negotiate Stateful Reconnect but the server did.")):n}catch(e){let t="Failed to complete negotiation with the server: "+e;return e instanceof ft&&404===e.statusCode&&(t+=" Either this is not a SignalR endpoint or there is a proxy blocking the connection."),this._logger.log(Et.Error,t),Promise.reject(new wt(t))}}_createConnectUrl(e,t){return t?e+(-1===e.indexOf("?")?"?":"&")+`id=${t}`:e}async _createTransport(e,t,n,r){let o=this._createConnectUrl(e,n.connectionToken);if(this._isITransport(t))return this._logger.log(Et.Debug,"Connection was provided an instance of ITransport, using that directly."),this.transport=t,await this._startTransport(o,r),void(this.connectionId=n.connectionId);const i=[],s=n.availableTransports||[];let a=n;for(const n of s){const s=this._resolveTransportOrError(n,t,r,!0===(null==a?void 0:a.useStatefulReconnect));if(s instanceof Error)i.push(`${n.transport} failed:`),i.push(s);else if(this._isITransport(s)){if(this.transport=s,!a){try{a=await this._getNegotiationResponse(e)}catch(e){return Promise.reject(e)}o=this._createConnectUrl(e,a.connectionToken)}try{return await this._startTransport(o,r),void(this.connectionId=a.connectionId)}catch(e){if(this._logger.log(Et.Error,`Failed to start the transport '${n.transport}': ${e}`),a=void 0,i.push(new _t(`${n.transport} failed: ${e}`,Qt[n.transport])),"Connecting"!==this._connectionState){const e="Failed to select transport before stop() was called.";return this._logger.log(Et.Debug,e),Promise.reject(new mt(e))}}}}return i.length>0?Promise.reject(new bt(`Unable to connect to the server with any of the available transports. ${i.join(" ")}`,i)):Promise.reject(new Error("None of the transports supported by the client are supported by the server."))}_constructTransport(e){switch(e){case Qt.WebSockets:if(!this._options.WebSocket)throw new Error("'WebSocket' is not supported in your environment.");return new rn(this._httpClient,this._accessTokenFactory,this._logger,this._options.logMessageContent,this._options.WebSocket,this._options.headers||{});case Qt.ServerSentEvents:if(!this._options.EventSource)throw new Error("'EventSource' is not supported in your environment.");return new nn(this._httpClient,this._httpClient._accessToken,this._logger,this._options);case Qt.LongPolling:return new tn(this._httpClient,this._logger,this._options);default:throw new Error(`Unknown transport: ${e}.`)}}_startTransport(e,t){return this.transport.onreceive=this.onreceive,this.features.reconnect?this.transport.onclose=async n=>{let r=!1;if(this.features.reconnect){try{this.features.disconnected(),await this.transport.connect(e,t),await this.features.resend()}catch{r=!0}r&&this._stopConnection(n)}else this._stopConnection(n)}:this.transport.onclose=e=>this._stopConnection(e),this.transport.connect(e,t)}_resolveTransportOrError(e,t,n,r){const o=Qt[e.transport];if(null==o)return this._logger.log(Et.Debug,`Skipping transport '${e.transport}' because it is not supported by this client.`),new Error(`Skipping transport '${e.transport}' because it is not supported by this client.`);if(!function(e,t){return!e||!!(t&e)}(t,o))return this._logger.log(Et.Debug,`Skipping transport '${Qt[o]}' because it was disabled by the client.`),new vt(`'${Qt[o]}' is disabled by the client.`,o);if(!(e.transferFormats.map((e=>Zt[e])).indexOf(n)>=0))return this._logger.log(Et.Debug,`Skipping transport '${Qt[o]}' because it does not support the requested transfer format '${Zt[n]}'.`),new Error(`'${Qt[o]}' does not support ${Zt[n]}.`);if(o===Qt.WebSockets&&!this._options.WebSocket||o===Qt.ServerSentEvents&&!this._options.EventSource)return this._logger.log(Et.Debug,`Skipping transport '${Qt[o]}' because it is not supported in your environment.'`),new yt(`'${Qt[o]}' is not supported in your environment.`,o);this._logger.log(Et.Debug,`Selecting transport '${Qt[o]}'.`);try{return this.features.reconnect=o===Qt.WebSockets?r:void 0,this._constructTransport(o)}catch(e){return e}}_isITransport(e){return e&&"object"==typeof e&&"connect"in e}_stopConnection(e){if(this._logger.log(Et.Debug,`HttpConnection.stopConnection(${e}) called while in state ${this._connectionState}.`),this.transport=void 0,e=this._stopError||e,this._stopError=void 0,"Disconnected"!==this._connectionState){if("Connecting"===this._connectionState)throw this._logger.log(Et.Warning,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is still in the connecting state.`),new Error(`HttpConnection.stopConnection(${e}) was called while the connection is still in the connecting state.`);if("Disconnecting"===this._connectionState&&this._stopPromiseResolver(),e?this._logger.log(Et.Error,`Connection disconnected with error '${e}'.`):this._logger.log(Et.Information,"Connection disconnected."),this._sendQueue&&(this._sendQueue.stop().catch((e=>{this._logger.log(Et.Error,`TransportSendQueue.stop() threw error '${e}'.`)})),this._sendQueue=void 0),this.connectionId=void 0,this._connectionState="Disconnected",this._connectionStarted){this._connectionStarted=!1;try{this.onclose&&this.onclose(e)}catch(t){this._logger.log(Et.Error,`HttpConnection.onclose(${e}) threw error '${t}'.`)}}}else this._logger.log(Et.Debug,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is already in the disconnected state.`)}_resolveUrl(e){if(0===e.lastIndexOf("https://",0)||0===e.lastIndexOf("http://",0))return e;if(!Dt.isBrowser)throw new Error(`Cannot resolve '${e}'.`);const t=window.document.createElement("a");return t.href=e,this._logger.log(Et.Information,`Normalizing '${e}' to '${t.href}'.`),t.href}_resolveNegotiateUrl(e){const t=new URL(e);t.pathname.endsWith("/")?t.pathname+="negotiate":t.pathname+="/negotiate";const n=new URLSearchParams(t.searchParams);return n.has("negotiateVersion")||n.append("negotiateVersion",this._negotiateVersion.toString()),n.has("useStatefulReconnect")?"true"===n.get("useStatefulReconnect")&&(this._options._useStatefulReconnect=!0):!0===this._options._useStatefulReconnect&&n.append("useStatefulReconnect","true"),t.search=n.toString(),t.toString()}}class sn{constructor(e){this._transport=e,this._buffer=[],this._executing=!0,this._sendBufferedData=new an,this._transportResult=new an,this._sendLoopPromise=this._sendLoop()}send(e){return this._bufferData(e),this._transportResult||(this._transportResult=new an),this._transportResult.promise}stop(){return this._executing=!1,this._sendBufferedData.resolve(),this._sendLoopPromise}_bufferData(e){if(this._buffer.length&&typeof this._buffer[0]!=typeof e)throw new Error(`Expected data to be of type ${typeof this._buffer} but was of type ${typeof e}`);this._buffer.push(e),this._sendBufferedData.resolve()}async _sendLoop(){for(;;){if(await this._sendBufferedData.promise,!this._executing){this._transportResult&&this._transportResult.reject("Connection stopped.");break}this._sendBufferedData=new an;const e=this._transportResult;this._transportResult=void 0;const t="string"==typeof this._buffer[0]?this._buffer.join(""):sn._concatBuffers(this._buffer);this._buffer.length=0;try{await this._transport.send(t),e.resolve()}catch(t){e.reject(t)}}}static _concatBuffers(e){const t=e.map((e=>e.byteLength)).reduce(((e,t)=>e+t)),n=new Uint8Array(t);let r=0;for(const t of e)n.set(new Uint8Array(t),r),r+=t.byteLength;return n.buffer}}class an{constructor(){this.promise=new Promise(((e,t)=>[this._resolver,this._rejecter]=[e,t]))}resolve(){this._resolver()}reject(e){this._rejecter(e)}}class cn{constructor(){this.name="json",this.version=2,this.transferFormat=Zt.Text}parseMessages(e,t){if("string"!=typeof e)throw new Error("Invalid input for JSON hub protocol. Expected a string.");if(!e)return[];null===t&&(t=Tt.instance);const n=jt.parse(e),r=[];for(const e of n){const n=JSON.parse(e);if("number"!=typeof n.type)throw new Error("Invalid payload.");switch(n.type){case It.Invocation:this._isInvocationMessage(n);break;case It.StreamItem:this._isStreamItemMessage(n);break;case It.Completion:this._isCompletionMessage(n);break;case It.Ping:case It.Close:break;case It.Ack:this._isAckMessage(n);break;case It.Sequence:this._isSequenceMessage(n);break;default:t.log(Et.Information,"Unknown message type '"+n.type+"' ignored.");continue}r.push(n)}return r}writeMessage(e){return jt.write(JSON.stringify(e))}_isInvocationMessage(e){this._assertNotEmptyString(e.target,"Invalid payload for Invocation message."),void 0!==e.invocationId&&this._assertNotEmptyString(e.invocationId,"Invalid payload for Invocation message.")}_isStreamItemMessage(e){if(this._assertNotEmptyString(e.invocationId,"Invalid payload for StreamItem message."),void 0===e.item)throw new Error("Invalid payload for StreamItem message.")}_isCompletionMessage(e){if(e.result&&e.error)throw new Error("Invalid payload for Completion message.");!e.result&&e.error&&this._assertNotEmptyString(e.error,"Invalid payload for Completion message."),this._assertNotEmptyString(e.invocationId,"Invalid payload for Completion message.")}_isAckMessage(e){if("number"!=typeof e.sequenceId)throw new Error("Invalid SequenceId for Ack message.")}_isSequenceMessage(e){if("number"!=typeof e.sequenceId)throw new Error("Invalid SequenceId for Sequence message.")}_assertNotEmptyString(e,t){if("string"!=typeof e||""===e)throw new Error(t)}}const ln={trace:Et.Trace,debug:Et.Debug,info:Et.Information,information:Et.Information,warn:Et.Warning,warning:Et.Warning,error:Et.Error,critical:Et.Critical,none:Et.None};class hn{configureLogging(e){if(Rt.isRequired(e,"logging"),function(e){return void 0!==e.log}(e))this.logger=e;else if("string"==typeof e){const t=function(e){const t=ln[e.toLowerCase()];if(void 0!==t)return t;throw new Error(`Unknown log level: ${e}`)}(e);this.logger=new Mt(t)}else this.logger=new Mt(e);return this}withUrl(e,t){return Rt.isRequired(e,"url"),Rt.isNotEmpty(e,"url"),this.url=e,this.httpConnectionOptions="object"==typeof t?{...this.httpConnectionOptions,...t}:{...this.httpConnectionOptions,transport:t},this}withHubProtocol(e){return Rt.isRequired(e,"protocol"),this.protocol=e,this}withAutomaticReconnect(e){if(this.reconnectPolicy)throw new Error("A reconnectPolicy has already been set.");return e?Array.isArray(e)?this.reconnectPolicy=new Xt(e):this.reconnectPolicy=e:this.reconnectPolicy=new Xt,this}withServerTimeout(e){return Rt.isRequired(e,"milliseconds"),this._serverTimeoutInMilliseconds=e,this}withKeepAliveInterval(e){return Rt.isRequired(e,"milliseconds"),this._keepAliveIntervalInMilliseconds=e,this}withStatefulReconnect(e){return void 0===this.httpConnectionOptions&&(this.httpConnectionOptions={}),this.httpConnectionOptions._useStatefulReconnect=!0,this._statefulReconnectBufferSize=null==e?void 0:e.bufferSize,this}build(){const e=this.httpConnectionOptions||{};if(void 0===e.logger&&(e.logger=this.logger),!this.url)throw new Error("The 'HubConnectionBuilder.withUrl' method must be called before building the connection.");const t=new on(this.url,e);return Vt.create(t,this.logger||Tt.instance,this.protocol||new cn,this.reconnectPolicy,this._serverTimeoutInMilliseconds,this._keepAliveIntervalInMilliseconds,this._statefulReconnectBufferSize)}}var un;!function(e){e[e.Default=0]="Default",e[e.Server=1]="Server",e[e.WebAssembly=2]="WebAssembly",e[e.WebView=3]="WebView"}(un||(un={}));var dn,pn,fn,gn=4294967295;function mn(e,t,n){var r=Math.floor(n/4294967296),o=n;e.setUint32(t,r),e.setUint32(t+4,o)}function yn(e,t){return 4294967296*e.getInt32(t)+e.getUint32(t+4)}var vn=("undefined"==typeof process||"never"!==(null===(dn=null===process||void 0===process?void 0:process.env)||void 0===dn?void 0:dn.TEXT_ENCODING))&&"undefined"!=typeof TextEncoder&&"undefined"!=typeof TextDecoder;function _n(e){for(var t=e.length,n=0,r=0;r=55296&&o<=56319&&r65535&&(h-=65536,i.push(h>>>10&1023|55296),h=56320|1023&h),i.push(h)}else i.push(a);else i.push(a);i.length>=4096&&(s+=String.fromCharCode.apply(String,i),i.length=0)}return i.length>0&&(s+=String.fromCharCode.apply(String,i)),s}var En,In=vn?new TextDecoder:null,kn=vn?"undefined"!=typeof process&&"force"!==(null===(fn=null===process||void 0===process?void 0:process.env)||void 0===fn?void 0:fn.TEXT_DECODER)?200:0:gn,Tn=function(e,t){this.type=e,this.data=t},Rn=(En=function(e,t){return En=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},En(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}En(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),Dn=function(e){function t(n){var r=e.call(this,n)||this,o=Object.create(t.prototype);return Object.setPrototypeOf(r,o),Object.defineProperty(r,"name",{configurable:!0,enumerable:!1,value:t.name}),r}return Rn(t,e),t}(Error),xn={type:-1,encode:function(e){var t,n,r,o;return e instanceof Date?function(e){var t,n=e.sec,r=e.nsec;if(n>=0&&r>=0&&n<=17179869183){if(0===r&&n<=4294967295){var o=new Uint8Array(4);return(t=new DataView(o.buffer)).setUint32(0,n),o}var i=n/4294967296,s=4294967295&n;return o=new Uint8Array(8),(t=new DataView(o.buffer)).setUint32(0,r<<2|3&i),t.setUint32(4,s),o}return o=new Uint8Array(12),(t=new DataView(o.buffer)).setUint32(0,r),mn(t,4,n),o}((r=1e6*((t=e.getTime())-1e3*(n=Math.floor(t/1e3))),{sec:n+(o=Math.floor(r/1e9)),nsec:r-1e9*o})):null},decode:function(e){var t=function(e){var t=new DataView(e.buffer,e.byteOffset,e.byteLength);switch(e.byteLength){case 4:return{sec:t.getUint32(0),nsec:0};case 8:var n=t.getUint32(0);return{sec:4294967296*(3&n)+t.getUint32(4),nsec:n>>>2};case 12:return{sec:yn(t,4),nsec:t.getUint32(0)};default:throw new Dn("Unrecognized data size for timestamp (expected 4, 8, or 12): ".concat(e.length))}}(e);return new Date(1e3*t.sec+t.nsec/1e6)}},An=function(){function e(){this.builtInEncoders=[],this.builtInDecoders=[],this.encoders=[],this.decoders=[],this.register(xn)}return e.prototype.register=function(e){var t=e.type,n=e.encode,r=e.decode;if(t>=0)this.encoders[t]=n,this.decoders[t]=r;else{var o=1+t;this.builtInEncoders[o]=n,this.builtInDecoders[o]=r}},e.prototype.tryToEncode=function(e,t){for(var n=0;nthis.maxDepth)throw new Error("Too deep objects in depth ".concat(t));null==e?this.encodeNil():"boolean"==typeof e?this.encodeBoolean(e):"number"==typeof e?this.encodeNumber(e):"string"==typeof e?this.encodeString(e):this.encodeObject(e,t)},e.prototype.ensureBufferSizeToWrite=function(e){var t=this.pos+e;this.view.byteLength=0?e<128?this.writeU8(e):e<256?(this.writeU8(204),this.writeU8(e)):e<65536?(this.writeU8(205),this.writeU16(e)):e<4294967296?(this.writeU8(206),this.writeU32(e)):(this.writeU8(207),this.writeU64(e)):e>=-32?this.writeU8(224|e+32):e>=-128?(this.writeU8(208),this.writeI8(e)):e>=-32768?(this.writeU8(209),this.writeI16(e)):e>=-2147483648?(this.writeU8(210),this.writeI32(e)):(this.writeU8(211),this.writeI64(e)):this.forceFloat32?(this.writeU8(202),this.writeF32(e)):(this.writeU8(203),this.writeF64(e))},e.prototype.writeStringHeader=function(e){if(e<32)this.writeU8(160+e);else if(e<256)this.writeU8(217),this.writeU8(e);else if(e<65536)this.writeU8(218),this.writeU16(e);else{if(!(e<4294967296))throw new Error("Too long string: ".concat(e," bytes in UTF-8"));this.writeU8(219),this.writeU32(e)}},e.prototype.encodeString=function(e){if(e.length>bn){var t=_n(e);this.ensureBufferSizeToWrite(5+t),this.writeStringHeader(t),Sn(e,this.bytes,this.pos),this.pos+=t}else t=_n(e),this.ensureBufferSizeToWrite(5+t),this.writeStringHeader(t),function(e,t,n){for(var r=e.length,o=n,i=0;i=55296&&s<=56319&&i>18&7|240,t[o++]=s>>12&63|128,t[o++]=s>>6&63|128):(t[o++]=s>>12&15|224,t[o++]=s>>6&63|128)}else t[o++]=s>>6&31|192;t[o++]=63&s|128}else t[o++]=s}}(e,this.bytes,this.pos),this.pos+=t},e.prototype.encodeObject=function(e,t){var n=this.extensionCodec.tryToEncode(e,this.context);if(null!=n)this.encodeExtension(n);else if(Array.isArray(e))this.encodeArray(e,t);else if(ArrayBuffer.isView(e))this.encodeBinary(e);else{if("object"!=typeof e)throw new Error("Unrecognized object: ".concat(Object.prototype.toString.apply(e)));this.encodeMap(e,t)}},e.prototype.encodeBinary=function(e){var t=e.byteLength;if(t<256)this.writeU8(196),this.writeU8(t);else if(t<65536)this.writeU8(197),this.writeU16(t);else{if(!(t<4294967296))throw new Error("Too large binary: ".concat(t));this.writeU8(198),this.writeU32(t)}var n=Pn(e);this.writeU8a(n)},e.prototype.encodeArray=function(e,t){var n=e.length;if(n<16)this.writeU8(144+n);else if(n<65536)this.writeU8(220),this.writeU16(n);else{if(!(n<4294967296))throw new Error("Too large array: ".concat(n));this.writeU8(221),this.writeU32(n)}for(var r=0,o=e;r0&&e<=this.maxKeyLength},e.prototype.find=function(e,t,n){e:for(var r=0,o=this.caches[n-1];r=this.maxLengthPerKey?n[Math.random()*n.length|0]=r:n.push(r)},e.prototype.decode=function(e,t,n){var r=this.find(e,t,n);if(null!=r)return this.hit++,r;this.miss++;var o=Cn(e,t,n),i=Uint8Array.prototype.slice.call(e,t,t+n);return this.store(i,o),o},e}(),Bn=function(e,t){var n,r,o,i,s={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(o=2&i[0]?r.return:i[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,i[1])).done)return o;switch(r=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,r=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((o=(o=s.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]=e},e.prototype.createExtraByteError=function(e){var t=this.view,n=this.pos;return new RangeError("Extra ".concat(t.byteLength-n," of ").concat(t.byteLength," byte(s) found at buffer[").concat(e,"]"))},e.prototype.decode=function(e){this.reinitializeState(),this.setBuffer(e);var t=this.doDecodeSync();if(this.hasRemaining(1))throw this.createExtraByteError(this.pos);return t},e.prototype.decodeMulti=function(e){return Bn(this,(function(t){switch(t.label){case 0:this.reinitializeState(),this.setBuffer(e),t.label=1;case 1:return this.hasRemaining(1)?[4,this.doDecodeSync()]:[3,3];case 2:return t.sent(),[3,1];case 3:return[2]}}))},e.prototype.decodeAsync=function(e){var t,n,r,o,i,s,a;return i=this,a=function(){var i,s,a,c,l,h,u,d;return Bn(this,(function(p){switch(p.label){case 0:i=!1,p.label=1;case 1:p.trys.push([1,6,7,12]),t=Ln(e),p.label=2;case 2:return[4,t.next()];case 3:if((n=p.sent()).done)return[3,5];if(a=n.value,i)throw this.createExtraByteError(this.totalPos);this.appendBuffer(a);try{s=this.doDecodeSync(),i=!0}catch(e){if(!(e instanceof Fn))throw e}this.totalPos+=this.pos,p.label=4;case 4:return[3,2];case 5:return[3,12];case 6:return c=p.sent(),r={error:c},[3,12];case 7:return p.trys.push([7,,10,11]),n&&!n.done&&(o=t.return)?[4,o.call(t)]:[3,9];case 8:p.sent(),p.label=9;case 9:return[3,11];case 10:if(r)throw r.error;return[7];case 11:return[7];case 12:if(i){if(this.hasRemaining(1))throw this.createExtraByteError(this.totalPos);return[2,s]}throw h=(l=this).headByte,u=l.pos,d=l.totalPos,new RangeError("Insufficient data in parsing ".concat(Mn(h)," at ").concat(d," (").concat(u," in the current buffer)"))}}))},new((s=void 0)||(s=Promise))((function(e,t){function n(e){try{o(a.next(e))}catch(e){t(e)}}function r(e){try{o(a.throw(e))}catch(e){t(e)}}function o(t){var o;t.done?e(t.value):(o=t.value,o instanceof s?o:new s((function(e){e(o)}))).then(n,r)}o((a=a.apply(i,[])).next())}))},e.prototype.decodeArrayStream=function(e){return this.decodeMultiAsync(e,!0)},e.prototype.decodeStream=function(e){return this.decodeMultiAsync(e,!1)},e.prototype.decodeMultiAsync=function(e,t){return function(n,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var o,i=function(){var n,r,o,i,s,a,c,l,h;return Bn(this,(function(u){switch(u.label){case 0:n=t,r=-1,u.label=1;case 1:u.trys.push([1,13,14,19]),o=Ln(e),u.label=2;case 2:return[4,$n(o.next())];case 3:if((i=u.sent()).done)return[3,12];if(s=i.value,t&&0===r)throw this.createExtraByteError(this.totalPos);this.appendBuffer(s),n&&(r=this.readArraySize(),n=!1,this.complete()),u.label=4;case 4:u.trys.push([4,9,,10]),u.label=5;case 5:return[4,$n(this.doDecodeSync())];case 6:return[4,u.sent()];case 7:return u.sent(),0==--r?[3,8]:[3,5];case 8:return[3,10];case 9:if(!((a=u.sent())instanceof Fn))throw a;return[3,10];case 10:this.totalPos+=this.pos,u.label=11;case 11:return[3,2];case 12:return[3,19];case 13:return c=u.sent(),l={error:c},[3,19];case 14:return u.trys.push([14,,17,18]),i&&!i.done&&(h=o.return)?[4,$n(h.call(o))]:[3,16];case 15:u.sent(),u.label=16;case 16:return[3,18];case 17:if(l)throw l.error;return[7];case 18:return[7];case 19:return[2]}}))}.apply(n,r||[]),s=[];return o={},a("next"),a("throw"),a("return"),o[Symbol.asyncIterator]=function(){return this},o;function a(e){i[e]&&(o[e]=function(t){return new Promise((function(n,r){s.push([e,t,n,r])>1||c(e,t)}))})}function c(e,t){try{(n=i[e](t)).value instanceof $n?Promise.resolve(n.value.v).then(l,h):u(s[0][2],n)}catch(e){u(s[0][3],e)}var n}function l(e){c("next",e)}function h(e){c("throw",e)}function u(e,t){e(t),s.shift(),s.length&&c(s[0][0],s[0][1])}}(this,arguments)},e.prototype.doDecodeSync=function(){e:for(;;){var e=this.readHeadByte(),t=void 0;if(e>=224)t=e-256;else if(e<192)if(e<128)t=e;else if(e<144){if(0!=(r=e-128)){this.pushMapState(r),this.complete();continue e}t={}}else if(e<160){if(0!=(r=e-144)){this.pushArrayState(r),this.complete();continue e}t=[]}else{var n=e-160;t=this.decodeUtf8String(n,0)}else if(192===e)t=null;else if(194===e)t=!1;else if(195===e)t=!0;else if(202===e)t=this.readF32();else if(203===e)t=this.readF64();else if(204===e)t=this.readU8();else if(205===e)t=this.readU16();else if(206===e)t=this.readU32();else if(207===e)t=this.readU64();else if(208===e)t=this.readI8();else if(209===e)t=this.readI16();else if(210===e)t=this.readI32();else if(211===e)t=this.readI64();else if(217===e)n=this.lookU8(),t=this.decodeUtf8String(n,1);else if(218===e)n=this.lookU16(),t=this.decodeUtf8String(n,2);else if(219===e)n=this.lookU32(),t=this.decodeUtf8String(n,4);else if(220===e){if(0!==(r=this.readU16())){this.pushArrayState(r),this.complete();continue e}t=[]}else if(221===e){if(0!==(r=this.readU32())){this.pushArrayState(r),this.complete();continue e}t=[]}else if(222===e){if(0!==(r=this.readU16())){this.pushMapState(r),this.complete();continue e}t={}}else if(223===e){if(0!==(r=this.readU32())){this.pushMapState(r),this.complete();continue e}t={}}else if(196===e){var r=this.lookU8();t=this.decodeBinary(r,1)}else if(197===e)r=this.lookU16(),t=this.decodeBinary(r,2);else if(198===e)r=this.lookU32(),t=this.decodeBinary(r,4);else if(212===e)t=this.decodeExtension(1,0);else if(213===e)t=this.decodeExtension(2,0);else if(214===e)t=this.decodeExtension(4,0);else if(215===e)t=this.decodeExtension(8,0);else if(216===e)t=this.decodeExtension(16,0);else if(199===e)r=this.lookU8(),t=this.decodeExtension(r,1);else if(200===e)r=this.lookU16(),t=this.decodeExtension(r,2);else{if(201!==e)throw new Dn("Unrecognized type byte: ".concat(Mn(e)));r=this.lookU32(),t=this.decodeExtension(r,4)}this.complete();for(var o=this.stack;o.length>0;){var i=o[o.length-1];if(0===i.type){if(i.array[i.position]=t,i.position++,i.position!==i.size)continue e;o.pop(),t=i.array}else{if(1===i.type){if("string"!=(s=typeof t)&&"number"!==s)throw new Dn("The type of key must be string or number but "+typeof t);if("__proto__"===t)throw new Dn("The key __proto__ is not allowed");i.key=t,i.type=2;continue e}if(i.map[i.key]=t,i.readCount++,i.readCount!==i.size){i.key=null,i.type=1;continue e}o.pop(),t=i.map}}return t}var s},e.prototype.readHeadByte=function(){return-1===this.headByte&&(this.headByte=this.readU8()),this.headByte},e.prototype.complete=function(){this.headByte=-1},e.prototype.readArraySize=function(){var e=this.readHeadByte();switch(e){case 220:return this.readU16();case 221:return this.readU32();default:if(e<160)return e-144;throw new Dn("Unrecognized array type byte: ".concat(Mn(e)))}},e.prototype.pushMapState=function(e){if(e>this.maxMapLength)throw new Dn("Max length exceeded: map length (".concat(e,") > maxMapLengthLength (").concat(this.maxMapLength,")"));this.stack.push({type:1,size:e,key:null,readCount:0,map:{}})},e.prototype.pushArrayState=function(e){if(e>this.maxArrayLength)throw new Dn("Max length exceeded: array length (".concat(e,") > maxArrayLength (").concat(this.maxArrayLength,")"));this.stack.push({type:0,size:e,array:new Array(e),position:0})},e.prototype.decodeUtf8String=function(e,t){var n;if(e>this.maxStrLength)throw new Dn("Max length exceeded: UTF-8 byte length (".concat(e,") > maxStrLength (").concat(this.maxStrLength,")"));if(this.bytes.byteLengthkn?function(e,t,n){var r=e.subarray(t,t+n);return In.decode(r)}(this.bytes,o,e):Cn(this.bytes,o,e),this.pos+=t+e,r},e.prototype.stateIsMapKey=function(){return this.stack.length>0&&1===this.stack[this.stack.length-1].type},e.prototype.decodeBinary=function(e,t){if(e>this.maxBinLength)throw new Dn("Max length exceeded: bin length (".concat(e,") > maxBinLength (").concat(this.maxBinLength,")"));if(!this.hasRemaining(e+t))throw jn;var n=this.pos+t,r=this.bytes.subarray(n,n+e);return this.pos+=t+e,r},e.prototype.decodeExtension=function(e,t){if(e>this.maxExtLength)throw new Dn("Max length exceeded: ext length (".concat(e,") > maxExtLength (").concat(this.maxExtLength,")"));var n=this.view.getInt8(this.pos+t),r=this.decodeBinary(e,t+1);return this.extensionCodec.decode(r,n,this.context)},e.prototype.lookU8=function(){return this.view.getUint8(this.pos)},e.prototype.lookU16=function(){return this.view.getUint16(this.pos)},e.prototype.lookU32=function(){return this.view.getUint32(this.pos)},e.prototype.readU8=function(){var e=this.view.getUint8(this.pos);return this.pos++,e},e.prototype.readI8=function(){var e=this.view.getInt8(this.pos);return this.pos++,e},e.prototype.readU16=function(){var e=this.view.getUint16(this.pos);return this.pos+=2,e},e.prototype.readI16=function(){var e=this.view.getInt16(this.pos);return this.pos+=2,e},e.prototype.readU32=function(){var e=this.view.getUint32(this.pos);return this.pos+=4,e},e.prototype.readI32=function(){var e=this.view.getInt32(this.pos);return this.pos+=4,e},e.prototype.readU64=function(){var e,t,n=(e=this.view,t=this.pos,4294967296*e.getUint32(t)+e.getUint32(t+4));return this.pos+=8,n},e.prototype.readI64=function(){var e=yn(this.view,this.pos);return this.pos+=8,e},e.prototype.readF32=function(){var e=this.view.getFloat32(this.pos);return this.pos+=4,e},e.prototype.readF64=function(){var e=this.view.getFloat64(this.pos);return this.pos+=8,e},e}();class qn{static write(e){let t=e.byteLength||e.length;const n=[];do{let e=127&t;t>>=7,t>0&&(e|=128),n.push(e)}while(t>0);t=e.byteLength||e.length;const r=new Uint8Array(n.length+t);return r.set(n,0),r.set(e,n.length),r.buffer}static parse(e){const t=[],n=new Uint8Array(e),r=[0,7,14,21,28];for(let o=0;o7)throw new Error("Messages bigger than 2GB are not supported.");if(!(n.byteLength>=o+s+a))throw new Error("Incomplete message.");t.push(n.slice?n.slice(o+s,o+s+a):n.subarray(o+s,o+s+a)),o=o+s+a}return t}}const Jn=new Uint8Array([145,It.Ping]);class Vn{constructor(e){this.name="messagepack",this.version=2,this.transferFormat=Zt.Binary,this._errorResult=1,this._voidResult=2,this._nonVoidResult=3,e=e||{},this._encoder=new Nn(e.extensionCodec,e.context,e.maxDepth,e.initialBufferSize,e.sortKeys,e.forceFloat32,e.ignoreUndefined,e.forceIntegerToFloat),this._decoder=new zn(e.extensionCodec,e.context,e.maxStrLength,e.maxBinLength,e.maxArrayLength,e.maxMapLength,e.maxExtLength)}parseMessages(e,t){if(!(n=e)||"undefined"==typeof ArrayBuffer||!(n instanceof ArrayBuffer||n.constructor&&"ArrayBuffer"===n.constructor.name))throw new Error("Invalid input for MessagePack hub protocol. Expected an ArrayBuffer.");var n;null===t&&(t=Tt.instance);const r=qn.parse(e),o=[];for(const e of r){const n=this._parseMessage(e,t);n&&o.push(n)}return o}writeMessage(e){switch(e.type){case It.Invocation:return this._writeInvocation(e);case It.StreamInvocation:return this._writeStreamInvocation(e);case It.StreamItem:return this._writeStreamItem(e);case It.Completion:return this._writeCompletion(e);case It.Ping:return qn.write(Jn);case It.CancelInvocation:return this._writeCancelInvocation(e);case It.Close:return this._writeClose();case It.Ack:return this._writeAck(e);case It.Sequence:return this._writeSequence(e);default:throw new Error("Invalid message type.")}}_parseMessage(e,t){if(0===e.length)throw new Error("Invalid payload.");const n=this._decoder.decode(e);if(0===n.length||!(n instanceof Array))throw new Error("Invalid payload.");const r=n[0];switch(r){case It.Invocation:return this._createInvocationMessage(this._readHeaders(n),n);case It.StreamItem:return this._createStreamItemMessage(this._readHeaders(n),n);case It.Completion:return this._createCompletionMessage(this._readHeaders(n),n);case It.Ping:return this._createPingMessage(n);case It.Close:return this._createCloseMessage(n);case It.Ack:return this._createAckMessage(n);case It.Sequence:return this._createSequenceMessage(n);default:return t.log(Et.Information,"Unknown message type '"+r+"' ignored."),null}}_createCloseMessage(e){if(e.length<2)throw new Error("Invalid payload for Close message.");return{allowReconnect:e.length>=3?e[2]:void 0,error:e[1],type:It.Close}}_createPingMessage(e){if(e.length<1)throw new Error("Invalid payload for Ping message.");return{type:It.Ping}}_createInvocationMessage(e,t){if(t.length<5)throw new Error("Invalid payload for Invocation message.");const n=t[2];return n?{arguments:t[4],headers:e,invocationId:n,streamIds:[],target:t[3],type:It.Invocation}:{arguments:t[4],headers:e,streamIds:[],target:t[3],type:It.Invocation}}_createStreamItemMessage(e,t){if(t.length<4)throw new Error("Invalid payload for StreamItem message.");return{headers:e,invocationId:t[2],item:t[3],type:It.StreamItem}}_createCompletionMessage(e,t){if(t.length<4)throw new Error("Invalid payload for Completion message.");const n=t[3];if(n!==this._voidResult&&t.length<5)throw new Error("Invalid payload for Completion message.");let r,o;switch(n){case this._errorResult:r=t[4];break;case this._nonVoidResult:o=t[4]}return{error:r,headers:e,invocationId:t[2],result:o,type:It.Completion}}_createAckMessage(e){if(e.length<1)throw new Error("Invalid payload for Ack message.");return{sequenceId:e[1],type:It.Ack}}_createSequenceMessage(e){if(e.length<1)throw new Error("Invalid payload for Sequence message.");return{sequenceId:e[1],type:It.Sequence}}_writeInvocation(e){let t;return t=e.streamIds?this._encoder.encode([It.Invocation,e.headers||{},e.invocationId||null,e.target,e.arguments,e.streamIds]):this._encoder.encode([It.Invocation,e.headers||{},e.invocationId||null,e.target,e.arguments]),qn.write(t.slice())}_writeStreamInvocation(e){let t;return t=e.streamIds?this._encoder.encode([It.StreamInvocation,e.headers||{},e.invocationId,e.target,e.arguments,e.streamIds]):this._encoder.encode([It.StreamInvocation,e.headers||{},e.invocationId,e.target,e.arguments]),qn.write(t.slice())}_writeStreamItem(e){const t=this._encoder.encode([It.StreamItem,e.headers||{},e.invocationId,e.item]);return qn.write(t.slice())}_writeCompletion(e){const t=e.error?this._errorResult:void 0!==e.result?this._nonVoidResult:this._voidResult;let n;switch(t){case this._errorResult:n=this._encoder.encode([It.Completion,e.headers||{},e.invocationId,t,e.error]);break;case this._voidResult:n=this._encoder.encode([It.Completion,e.headers||{},e.invocationId,t]);break;case this._nonVoidResult:n=this._encoder.encode([It.Completion,e.headers||{},e.invocationId,t,e.result])}return qn.write(n.slice())}_writeCancelInvocation(e){const t=this._encoder.encode([It.CancelInvocation,e.headers||{},e.invocationId]);return qn.write(t.slice())}_writeClose(){const e=this._encoder.encode([It.Close,null]);return qn.write(e.slice())}_writeAck(e){const t=this._encoder.encode([It.Ack,e.sequenceId]);return qn.write(t.slice())}_writeSequence(e){const t=this._encoder.encode([It.Sequence,e.sequenceId]);return qn.write(t.slice())}_readHeaders(e){const t=e[1];if("object"!=typeof t)throw new Error("Invalid headers.");return t}}const Kn="function"==typeof TextDecoder?new TextDecoder("utf-8"):null,Xn=Kn?Kn.decode.bind(Kn):function(e){let t=0;const n=e.length,r=[],o=[];for(;t65535&&(o-=65536,r.push(o>>>10&1023|55296),o=56320|1023&o),r.push(o)}}else r.push(n);r.length>1024&&(o.push(String.fromCharCode.apply(null,r)),r.length=0)}return o.push(String.fromCharCode.apply(null,r)),o.join("")},Gn=Math.pow(2,32),Yn=Math.pow(2,21)-1;function Qn(e,t){return e[t]|e[t+1]<<8|e[t+2]<<16|e[t+3]<<24}function Zn(e,t){return e[t]+(e[t+1]<<8)+(e[t+2]<<16)+(e[t+3]<<24>>>0)}function er(e,t){const n=Zn(e,t+4);if(n>Yn)throw new Error(`Cannot read uint64 with high order part ${n}, because the result would exceed Number.MAX_SAFE_INTEGER.`);return n*Gn+Zn(e,t)}class tr{constructor(e){this.batchData=e;const t=new ir(e);this.arrayRangeReader=new sr(e),this.arrayBuilderSegmentReader=new ar(e),this.diffReader=new nr(e),this.editReader=new rr(e,t),this.frameReader=new or(e,t)}updatedComponents(){return Qn(this.batchData,this.batchData.length-20)}referenceFrames(){return Qn(this.batchData,this.batchData.length-16)}disposedComponentIds(){return Qn(this.batchData,this.batchData.length-12)}disposedEventHandlerIds(){return Qn(this.batchData,this.batchData.length-8)}updatedComponentsEntry(e,t){const n=e+4*t;return Qn(this.batchData,n)}referenceFramesEntry(e,t){return e+20*t}disposedComponentIdsEntry(e,t){const n=e+4*t;return Qn(this.batchData,n)}disposedEventHandlerIdsEntry(e,t){const n=e+8*t;return er(this.batchData,n)}}class nr{constructor(e){this.batchDataUint8=e}componentId(e){return Qn(this.batchDataUint8,e)}edits(e){return e+4}editsEntry(e,t){return e+16*t}}class rr{constructor(e,t){this.batchDataUint8=e,this.stringReader=t}editType(e){return Qn(this.batchDataUint8,e)}siblingIndex(e){return Qn(this.batchDataUint8,e+4)}newTreeIndex(e){return Qn(this.batchDataUint8,e+8)}moveToSiblingIndex(e){return Qn(this.batchDataUint8,e+8)}removedAttributeName(e){const t=Qn(this.batchDataUint8,e+12);return this.stringReader.readString(t)}}class or{constructor(e,t){this.batchDataUint8=e,this.stringReader=t}frameType(e){return Qn(this.batchDataUint8,e)}subtreeLength(e){return Qn(this.batchDataUint8,e+4)}elementReferenceCaptureId(e){const t=Qn(this.batchDataUint8,e+4);return this.stringReader.readString(t)}componentId(e){return Qn(this.batchDataUint8,e+8)}elementName(e){const t=Qn(this.batchDataUint8,e+8);return this.stringReader.readString(t)}textContent(e){const t=Qn(this.batchDataUint8,e+4);return this.stringReader.readString(t)}markupContent(e){const t=Qn(this.batchDataUint8,e+4);return this.stringReader.readString(t)}attributeName(e){const t=Qn(this.batchDataUint8,e+4);return this.stringReader.readString(t)}attributeValue(e){const t=Qn(this.batchDataUint8,e+8);return this.stringReader.readString(t)}attributeEventHandlerId(e){return er(this.batchDataUint8,e+12)}}class ir{constructor(e){this.batchDataUint8=e,this.stringTableStartIndex=Qn(e,e.length-4)}readString(e){if(-1===e)return null;{const n=Qn(this.batchDataUint8,this.stringTableStartIndex+4*e),r=function(e,t){let n=0,r=0;for(let o=0;o<4;o++){const i=e[t+o];if(n|=(127&i)<this.nextBatchId)return this.fatalError?(this.logger.log(Ze.Debug,`Received a new batch ${e} but errored out on a previous batch ${this.nextBatchId-1}`),void await n.send("OnRenderCompleted",this.nextBatchId-1,this.fatalError.toString())):void this.logger.log(Ze.Debug,`Waiting for batch ${this.nextBatchId}. Batch ${e} not processed.`);try{this.nextBatchId++,this.logger.log(Ze.Debug,`Applying batch ${e}.`),function(e,t){const n=me[e];if(!n)throw new Error(`There is no browser renderer with ID ${e}.`);const r=t.arrayRangeReader,o=t.updatedComponents(),i=r.values(o),s=r.count(o),a=t.referenceFrames(),c=r.values(a),l=t.diffReader;for(let e=0;e{e.onclick=function(e){location.reload(),e.preventDefault()}})),document.querySelectorAll("#blazor-error-ui .dismiss").forEach((e=>{e.onclick=function(e){const t=document.querySelector("#blazor-error-ui");t&&(t.style.display="none"),e.preventDefault()}})))}class yr{constructor(t,n,r,o){this._renderingFailed=!1,this._disposed=!1,this._pausingState=new vr("pausing",!1,!1),this._resumingState=new vr("resuming",!1,!1),this._disconnectingState=new vr("disconnecting"),this._isFirstRender=!0,this._circuitId=void 0,this._applicationState=n,this._componentManager=t,this._options=r,this._logger=o,this._renderQueue=new cr(this._logger),this._dispatcher=e.attachDispatcher(this)}start(){if(this.isDisposedOrDisposing())throw new Error("Cannot start a disposed circuit.");return this._startPromise||(this._startPromise=this.startCore()),this._startPromise}updateRootComponents(e,t){return this._isFirstRender?(this._isFirstRender=!1,this._connection?.send("UpdateRootComponents",e,this._applicationState)):this._connection?.send("UpdateRootComponents",e,t)}async startCore(){if(this._connection=await this.startConnection(),this._connection.state!==kt.Connected)return!1;const e=JSON.stringify(this._componentManager.initialComponents.map((e=>{return t=e,{...t,start:void 0,end:void 0};var t})));if(this._circuitId=await this._connection.invoke("StartCircuit",Ae.getBaseURI(),Ae.getLocationHref(),e,this._applicationState||""),!this._circuitId)return!1;for(const e of this._options.circuitHandlers)e.onCircuitOpened&&e.onCircuitOpened();return!0}async startConnection(){const e=new Vn;e.name="blazorpack";const t=(new hn).withUrl("_blazor").withHubProtocol(e);this._options.configureSignalR(t);const n=t.build();n.on("JS.AttachComponent",((e,t)=>function(e,t,n){let r=me[e];r||(r=new de(e),me[e]=r),r.attachRootComponentToLogicalElement(n,t,!1)}(un.Server,this.resolveElement(t),e))),n.on("JS.BeginInvokeJS",this._dispatcher.beginInvokeJSFromDotNet.bind(this._dispatcher)),n.on("JS.EndInvokeDotNet",this._dispatcher.endInvokeDotNetFromJS.bind(this._dispatcher)),n.on("JS.ReceiveByteArray",this._dispatcher.receiveByteArray.bind(this._dispatcher)),n.on("JS.SavePersistedState",((e,t,n)=>{if(!this._circuitId)throw new Error("Circuit host not initialized.");if(e!==this._circuitId)throw new Error(`Received persisted state for circuit ID '${e}', but the current circuit ID is '${this._circuitId}'.`);return this._persistedCircuitState={components:t,applicationState:n},!0})),n.on("JS.BeginTransmitStream",(e=>{const t=new ReadableStream({start:t=>{n.stream("SendDotNetStreamToJS",e).subscribe({next:e=>t.enqueue(e),complete:()=>t.close(),error:e=>t.error(e)})}});this._dispatcher.supplyDotNetStream(e,t)})),n.on("JS.RenderBatch",(async(e,t)=>{this._logger.log(Et.Debug,`Received render batch with id ${e} and ${t.byteLength} bytes.`),await this._renderQueue.processBatch(e,t,this._connection),this._componentManager.onAfterRenderBatch?.(un.Server)})),n.on("JS.EndUpdateRootComponents",(e=>{this._componentManager.onAfterUpdateRootComponents?.(e)})),n.on("JS.EndLocationChanging",Qe._internal.navigationManager.endLocationChanging),n.onclose((e=>{this._interopMethodsForReconnection=function(e){const t=b.get(e);if(!t)throw new Error(`Interop methods are not registered for renderer ${e}`);return b.delete(e),t}(un.Server);const t=this._pausingState.isInprogress();t||this._pausingState.transitionTo(!0),this._disposed||this._renderingFailed||t||this._options.reconnectionHandler.onConnectionDown(this._options.reconnectionOptions,e)})),n.on("JS.Error",(e=>{this._renderingFailed=!0,this.unhandledError(e),mr()}));try{await n.start()}catch(e){if(this.unhandledError(e),"FailedToNegotiateWithServerError"===e.errorType)throw e;mr(),e.innerErrors&&(e.innerErrors.some((e=>"UnsupportedTransportError"===e.errorType&&e.transport===Qt.WebSockets))?this._logger.log(Et.Error,"Unable to connect, please ensure you are using an updated browser that supports WebSockets."):e.innerErrors.some((e=>"FailedToStartTransportError"===e.errorType&&e.transport===Qt.WebSockets))?this._logger.log(Et.Error,"Unable to connect, please ensure WebSockets are available. A VPN or proxy may be blocking the connection."):e.innerErrors.some((e=>"DisabledTransportError"===e.errorType&&e.transport===Qt.LongPolling))&&this._logger.log(Et.Error,"Unable to initiate a SignalR connection to the server. This might be because the server is not configured to support WebSockets. For additional details, visit https://aka.ms/blazor-server-websockets-error."))}return n.connection?.features?.inherentKeepAlive&&this._logger.log(Et.Warning,"Failed to connect via WebSockets, using the Long Polling fallback transport. This may be due to a VPN or proxy blocking the connection. To troubleshoot this, visit https://aka.ms/blazor-server-using-fallback-long-polling."),n}async disconnect(){if(!this._circuitId)throw new Error("Circuit host not initialized.");if(this._disconnectingState.isInprogress())return this._logger.log(Et.Trace,"Waiting for the circuit to finish disconnecting..."),this._disconnectingState.currentProgress();try{this._disconnectingState.reset();const e=this._disconnectingState.currentProgress();return this._logger.log(Et.Trace,"Disconnecting the circuit..."),await this._connection.stop(),this._disconnectingState.complete(),e}catch(e){throw this._logger.log(Et.Error,`Failed to disconnect the circuit: ${e}`),this._disconnectingState.fail(e),e}}async reconnect(){if(!this._circuitId)throw new Error("Circuit host not initialized.");return this._connection.state===kt.Connected||(this._connection=await this.startConnection(),this._interopMethodsForReconnection&&(E(un.Server,this._interopMethodsForReconnection),this._interopMethodsForReconnection=void 0),!!await this._connection.invoke("ConnectCircuit",this._circuitId)&&(this._options.reconnectionHandler.onConnectionUp(),!0))}async pause(e){if(!this._circuitId)return this._logger.log(Et.Error,"Circuit host not initialized."),!1;if(this._connection.state!==kt.Connected)return this._logger.log(Et.Trace,"Pause can only be triggered on connected circuits."),!1;if(this._resumingState.isInprogress())return this._logger.log(Et.Trace,"Circuit is currently resuming..."),!1;if(this._pausingState.isInprogress())return this._logger.log(Et.Trace,"Waiting for the circuit to finish pausing..."),this._pausingState.currentProgress();if(!0===this._pausingState.lastValue())return this._logger.log(Et.Trace,"Circuit is already paused."),!0;this._pausingState.reset();const t=this._pausingState.currentProgress();try{this._logger.log(Et.Trace,"Pausing the circuit..."),this._options.reconnectionHandler?.onConnectionDown(this._options.reconnectionOptions,void 0,!0,e);const t=await this._connection.invoke("PauseCircuit");this._pausingState.complete(t)}catch(e){this._logger.log(Et.Error,`Failed to pause the circuit: ${e}`),this._pausingState.fail(e)}return await this.disconnect(),t}async resume(){if(!this._circuitId)throw this._logger.log(Et.Error,"Circuit host not initialized."),new Error("Circuit host not initialized.");if(this._disconnectingState.isInprogress()&&(this._logger.log(Et.Trace,"Circuit is disconnecting, cannot resume."),await this._disconnectingState.currentProgress()),this._pausingState.isInprogress())return this._logger.log(Et.Trace,"Waiting for the circuit to finish pausing..."),!1;if(!this._pausingState.lastValue())return this._logger.log(Et.Trace,"Circuit is not paused."),!1;if(this._connection.state!==kt.Connected&&(this._logger.log(Et.Trace,"Reestablishing SignalR connection..."),this._connection=await this.startConnection()),this._resumingState.isInprogress())return this._logger.log(Et.Trace,"Waiting for the circuit to finish resuming..."),this._resumingState.currentProgress();this._resumingState.reset();const e=this._resumingState.currentProgress();try{for(const e of this._options.circuitHandlers)e.onCircuitClosed&&e.onCircuitClosed();const t=this._persistedCircuitState;this._persistedCircuitState=void 0;const n=await this._connection.invoke("ResumeCircuit",this._circuitId,Ae.getBaseURI(),Ae.getLocationHref(),t?.components??"[]",t?.applicationState??"");if(!n)return this._resumingState.complete(!1),e;this._pausingState.transitionTo(!1),this._resumingState.complete(!0),this._circuitId=n,this._renderQueue=new cr(this._logger);for(const e of this._options.circuitHandlers)e.onCircuitOpened&&e.onCircuitOpened();return this._options.reconnectionHandler.onConnectionUp(),this._componentManager.onComponentReload?.(un.Server),e}catch(t){return this._logger.log(Et.Error,`Failed to resume the circuit: ${t}`),this._resumingState.fail(t),e}}beginInvokeDotNetFromJS(e,t,n,r,o){this.throwIfDispatchingWhenDisposed(),this._connection.send("BeginInvokeDotNetFromJS",e?e.toString():null,t,n,r||0,o)}endInvokeJSFromDotNet(e,t,n){this.throwIfDispatchingWhenDisposed(),this._connection.send("EndInvokeJSFromDotNet",e,t,n)}sendByteArray(e,t){this.throwIfDispatchingWhenDisposed(),this._connection.send("ReceiveByteArray",e,t)}throwIfDispatchingWhenDisposed(){if(this._disposed)throw new Error("The circuit associated with this dispatcher is no longer available.")}sendLocationChanged(e,t,n){return this._connection.send("OnLocationChanged",e,t,n)}sendLocationChanging(e,t,n,r){return this._connection.send("OnLocationChanging",e,t,n,r)}sendJsDataStream(e,t,n){return function(e,t,n,r){setTimeout((async()=>{let o=5,i=(new Date).valueOf();try{const s=t instanceof Blob?t.size:t.byteLength;let a=0,c=0;for(;a1)await e.send("ReceiveJSDataChunk",n,c,h,null);else{if(!await e.invoke("ReceiveJSDataChunk",n,c,h,null))break;const t=(new Date).valueOf(),r=t-i;i=t,o=Math.max(1,Math.round(500/Math.max(1,r)))}a+=l,c++}}catch(t){await e.send("ReceiveJSDataChunk",n,-1,null,t.toString())}}),0)}(this._connection,e,t,n)}resolveElement(e){const t=function(e){const t=p.get(e);if(t)return p.delete(e),t}(e);if(t)return O(t,!0);const n=Number.parseInt(e);if(!Number.isNaN(n))return function(e){const{start:t,end:n}=e,r=t[$];if(r){if(r!==e)throw new Error("The start component comment was already associated with another component descriptor.");return t}const o=t.parentNode;if(!o)throw new Error(`Comment not connected to the DOM ${t.textContent}`);const i=O(o,!0),s=V(i);t[L]=i,t[$]=e;const a=O(t);if(n){const e=V(a),r=Array.prototype.indexOf.call(s,a)+1;let o=null;for(;o!==n;){const n=s.splice(r,1)[0];if(!n)throw new Error("Could not find the end component comment in the parent logical node list");n[L]=t,e.push(n),o=n}}return a}(this._componentManager.resolveRootComponent(n));throw new Error(`Invalid sequence number or identifier '${e}'.`)}getRootComponentManager(){return this._componentManager}unhandledError(e){this._logger.log(Et.Error,e),this.disconnect()}getDisconnectFormData(){const e=new FormData,t=this._circuitId;return e.append("circuitId",t),e}didRenderingFail(){return this._renderingFailed}isDisposedOrDisposing(){return void 0!==this._disposePromise}sendDisconnectBeacon(){if(this._disposed)return;const e=this.getDisconnectFormData();this._disposed=navigator.sendBeacon("_blazor/disconnect",e)}dispose(){return this._disposePromise||(this._disposePromise=this.disposeCore()),this._disposePromise}async disposeCore(){if(!this._startPromise)return void(this._disposed=!0);await this._startPromise,this._disposed=!0,this._connection?.stop();const e=this.getDisconnectFormData();fetch("_blazor/disconnect",{method:"POST",body:e});for(const e of this._options.circuitHandlers)e.onCircuitClosed&&e.onCircuitClosed()}}class vr{constructor(e,t,n){this._stateName=e,this._resetValue=n,this._lastValue=t}reset(){if(this._promise)throw new Error(`Circuit state ${this._stateName} is already in progress`);const{promise:e,resolve:t,reject:n}=Promise.withResolvers();this._promise=e,this._resolve=t,this._reject=n,this._lastValue=this._resetValue}complete(e){if(!this._resolve)throw new Error(`Circuit state ${this._stateName} not initialized`);const t=this._resolve;this._lastValue=e,this._promise=void 0,this._resolve=void 0,this._reject=void 0,t(e)}fail(e){if(!this._reject)throw new Error(`Circuit state ${this._stateName} not initialized`);const t=this._reject;this._promise=void 0,this._resolve=void 0,this._reject=void 0,t(e)}isInprogress(){return!!this._promise}currentProgress(){if(!this.isInprogress())throw new Error(`Circuit state ${this._stateName} is not in progress`);return this._promise}transitionTo(e){if(this._promise)throw new Error(`Circuit state ${this._stateName} is in progress`);this._lastValue=e}lastValue(){return this._lastValue}}class _r{static{this.ReconnectOverlayClassName="components-reconnect-overlay"}static{this.ReconnectDialogClassName="components-reconnect-dialog"}static{this.ReconnectVisibleClassName="components-reconnect-visible"}static{this.RejoiningAnimationClassName="components-rejoining-animation"}static{this.AnimationRippleCount=2}constructor(e,t,n){this.document=t,this.logger=n,this.reconnect=!0,this.remote=!1,this.style=this.document.createElement("style"),this.style.innerHTML=_r.Css,this.overlay=this.document.createElement("div"),this.overlay.className=_r.ReconnectOverlayClassName,this.host=this.document.createElement("div"),this.host.id=e;const r=this.host.attachShadow({mode:"open"});this.dialog=t.createElement("div"),this.dialog.className=_r.ReconnectDialogClassName,r.appendChild(this.style),r.appendChild(this.overlay),this.rejoiningAnimation=t.createElement("div"),this.rejoiningAnimation.className=_r.RejoiningAnimationClassName;for(let e=0;e<_r.AnimationRippleCount;e++){const e=t.createElement("div");this.rejoiningAnimation.appendChild(e)}this.status=t.createElement("p"),this.status.innerHTML="",this.reloadButton=t.createElement("button"),this.reloadButton.style.display="none",this.reloadButton.innerHTML="Retry",this.reloadButton.addEventListener("click",this.retry.bind(this)),this.resumeButton=t.createElement("button"),this.resumeButton.style.display="none",this.resumeButton.innerHTML="Resume",this.resumeButton.addEventListener("click",this.resume.bind(this)),this.dialog.appendChild(this.rejoiningAnimation),this.dialog.appendChild(this.status),this.dialog.appendChild(this.reloadButton),this.dialog.appendChild(this.resumeButton),this.overlay.appendChild(this.dialog),this.retryWhenDocumentBecomesVisible=()=>{"visible"===this.document.visibilityState&&this.retry()}}show(e){this.document.contains(this.host)||this.document.body.appendChild(this.host),this.reconnect="reconnect"===e?.type,this.reloadButton.style.display="none",this.rejoiningAnimation.style.display="block",this.status.innerHTML="Rejoining the server...",this.host.style.display="block",this.overlay.classList.add(_r.ReconnectVisibleClassName)}update(e){if(this.reconnect="reconnect"===e.type,this.reconnect){const{currentAttempt:t,secondsToNextAttempt:n}=e;if(1===t||0===n)this.status.innerHTML="Rejoining the server...";else{const e=1===n?"second":"seconds";this.status.innerHTML=`Rejoin failed... trying again in ${n} ${e}`}}else this.reloadButton.style.display="none",this.rejoiningAnimation.style.display="none",this.status.innerHTML="The session has been paused by the server.",this.resumeButton.style.display="block"}hide(){this.host.style.display="none",this.overlay.classList.remove(_r.ReconnectVisibleClassName)}failed(){this.rejoiningAnimation.style.display="none",this.reconnect?(this.reloadButton.style.display="block",this.status.innerHTML="Failed to rejoin.
Please retry or reload the page.",this.document.addEventListener("visibilitychange",this.retryWhenDocumentBecomesVisible)):(this.status.innerHTML="Failed to resume the session.
Please reload the page.",this.resumeButton.style.display="none",this.reloadButton.style.display="none")}rejected(){location.reload()}async retry(){this.document.removeEventListener("visibilitychange",this.retryWhenDocumentBecomesVisible),this.show();try{await Qe.reconnect()||(this.update({type:"pause",remote:this.remote}),await Qe.resumeCircuit()||this.rejected())}catch(e){this.logger.log(Ze.Error,e),this.failed()}}async resume(){try{await Qe.resumeCircuit()||this.failed()}catch(e){this.logger.log(Ze.Error,e),this.failed()}}static{this.Css=`\n .${this.ReconnectOverlayClassName} {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10000;\n display: none;\n overflow: hidden;\n animation: components-reconnect-fade-in;\n }\n\n .${this.ReconnectOverlayClassName}.${this.ReconnectVisibleClassName} {\n display: block;\n }\n\n .${this.ReconnectOverlayClassName}::before {\n content: '';\n background-color: rgba(0, 0, 0, 0.4);\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n animation: components-reconnect-fadeInOpacity 0.5s ease-in-out;\n opacity: 1;\n }\n\n .${this.ReconnectOverlayClassName} p {\n margin: 0;\n text-align: center;\n }\n\n .${this.ReconnectOverlayClassName} button {\n border: 0;\n background-color: #6b9ed2;\n color: white;\n padding: 4px 24px;\n border-radius: 4px;\n }\n\n .${this.ReconnectOverlayClassName} button:hover {\n background-color: #3b6ea2;\n }\n\n .${this.ReconnectOverlayClassName} button:active {\n background-color: #6b9ed2;\n }\n\n .${this.ReconnectDialogClassName} {\n position: relative;\n background-color: white;\n width: 20rem;\n margin: 20vh auto;\n padding: 2rem;\n border-radius: 0.5rem;\n box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);\n display: flex;\n flex-direction: column;\n align-items: center;\n gap: 1rem;\n opacity: 0;\n animation: components-reconnect-slideUp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-fadeInOpacity 0.5s ease-out 0.3s;\n animation-fill-mode: forwards;\n z-index: 10001;\n }\n\n .${this.RejoiningAnimationClassName} {\n display: block;\n position: relative;\n width: 80px;\n height: 80px;\n }\n\n .${this.RejoiningAnimationClassName} div {\n position: absolute;\n border: 3px solid #0087ff;\n opacity: 1;\n border-radius: 50%;\n animation: ${this.RejoiningAnimationClassName} 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;\n }\n\n .${this.RejoiningAnimationClassName} div:nth-child(2) {\n animation-delay: -0.5s;\n }\n\n @keyframes ${this.RejoiningAnimationClassName} {\n 0% {\n top: 40px;\n left: 40px;\n width: 0;\n height: 0;\n opacity: 0;\n }\n\n 4.9% {\n top: 40px;\n left: 40px;\n width: 0;\n height: 0;\n opacity: 0;\n }\n\n 5% {\n top: 40px;\n left: 40px;\n width: 0;\n height: 0;\n opacity: 1;\n }\n\n 100% {\n top: 0px;\n left: 0px;\n width: 80px;\n height: 80px;\n opacity: 0;\n }\n }\n\n @keyframes components-reconnect-fadeInOpacity {\n 0% {\n opacity: 0;\n }\n\n 100% {\n opacity: 1;\n }\n }\n\n @keyframes components-reconnect-slideUp {\n 0% {\n transform: translateY(30px) scale(0.95);\n }\n\n 100% {\n transform: translateY(0);\n }\n }\n `}}class wr{static{this.ShowClassName="components-reconnect-show"}static{this.HideClassName="components-reconnect-hide"}static{this.RetryingClassName="components-reconnect-retrying"}static{this.FailedClassName="components-reconnect-failed"}static{this.PausedClassName="components-reconnect-paused"}static{this.ResumeFailedClassName="components-reconnect-resume-failed"}static{this.RejectedClassName="components-reconnect-rejected"}static{this.MaxRetriesId="components-reconnect-max-retries"}static{this.CurrentAttemptId="components-reconnect-current-attempt"}static{this.SecondsToNextAttemptId="components-seconds-to-next-attempt"}static{this.ReconnectStateChangedEventName="components-reconnect-state-changed"}constructor(e,t,n){if(this.dialog=e,this.document=t,this.reconnect=!1,this.document=t,void 0!==n){const e=this.document.getElementById(wr.MaxRetriesId);e&&(e.innerText=n.toString())}}show(){this.removeClasses(),this.dialog.classList.add(wr.ShowClassName),this.dispatchReconnectStateChangedEvent({state:"show"})}update(e){if(this.reconnect="reconnect"===e.type,"reconnect"===e.type){const{currentAttempt:t,secondsToNextAttempt:n}=e,r=this.document.getElementById(wr.CurrentAttemptId);r&&(r.innerText=t.toString());const o=this.document.getElementById(wr.SecondsToNextAttemptId);o&&(o.innerText=n.toString()),t>1&&n>0&&this.dialog.classList.add(wr.RetryingClassName),this.dispatchReconnectStateChangedEvent({state:"retrying",currentAttempt:t,secondsToNextAttempt:n})}if("pause"===e.type){const t=e.remote;this.dialog.classList.remove(wr.ShowClassName,wr.RetryingClassName),this.dialog.classList.add(wr.PausedClassName),this.dispatchReconnectStateChangedEvent({state:"paused",remote:t})}}hide(){this.removeClasses(),this.dialog.classList.add(wr.HideClassName),this.dispatchReconnectStateChangedEvent({state:"hide"})}failed(){this.removeClasses(),this.reconnect?(this.dialog.classList.add(wr.FailedClassName),this.dispatchReconnectStateChangedEvent({state:"failed"})):(this.dialog.classList.add(wr.ResumeFailedClassName),this.dispatchReconnectStateChangedEvent({state:"resume-failed"}))}rejected(){this.removeClasses(),this.dialog.classList.add(wr.RejectedClassName),this.dispatchReconnectStateChangedEvent({state:"rejected"})}removeClasses(){this.dialog.classList.remove(wr.ShowClassName,wr.HideClassName,wr.RetryingClassName,wr.FailedClassName,wr.RejectedClassName,wr.PausedClassName,wr.ResumeFailedClassName)}dispatchReconnectStateChangedEvent(e){const t=new CustomEvent(wr.ReconnectStateChangedEventName,{detail:e});this.dialog.dispatchEvent(t)}}class br{constructor(e,t,n,r){this._currentReconnectionProcess=null,this._logger=e,this._reconnectionDisplay=t,this._reconnectCallback=n||Qe.reconnect,this._resumeCallback=r||Qe.resumeCircuit}onConnectionDown(e,t,n,r){if(!this._reconnectionDisplay){const t=document.getElementById(e.dialogId);this._reconnectionDisplay=t?new wr(t,document,e.maxRetries):new _r(e.dialogId,document,this._logger)}this._currentReconnectionProcess||(this._currentReconnectionProcess=new Sr(e,this._logger,this._reconnectCallback,this._resumeCallback,this._reconnectionDisplay,n,r))}onConnectionUp(){this._currentReconnectionProcess&&(this._currentReconnectionProcess.dispose(),this._currentReconnectionProcess=null)}}class Sr{static{this.MaximumFirstRetryInterval=3e3}constructor(e,t,n,r,o,i,s=!1){this.logger=t,this.reconnectCallback=n,this.resumeCallback=r,this.isGracefulPause=i,this.isRemote=s,this.isDisposed=!1,this.reconnectDisplay=o;const a={type:i?"pause":"reconnect",remote:this.isRemote,currentAttempt:0,secondsToNextAttempt:0};this.reconnectDisplay.show(a),this.isGracefulPause?this.reconnectDisplay.update({type:"pause",remote:this.isRemote}):this.attemptPeriodicReconnection(e)}dispose(){this.isDisposed=!0,this.reconnectDisplay.hide()}async attemptPeriodicReconnection(e){for(let t=0;void 0===e.maxRetries||tSr.MaximumFirstRetryInterval?Sr.MaximumFirstRetryInterval:e.retryIntervalMilliseconds;if(await this.runTimer(n,1e3,(e=>{this.reconnectDisplay.update({type:"reconnect",currentAttempt:t+1,secondsToNextAttempt:Math.round(e/1e3)})})),this.isDisposed)break;try{if(!await this.reconnectCallback()){if(this.reconnectDisplay.update({type:"pause",remote:!0}),await this.resumeCallback())return;return void this.reconnectDisplay.failed()}return}catch(e){this.logger.log(Ze.Error,e)}}this.reconnectDisplay.failed()}async runTimer(e,t,n){if(e<=0)return void n(0);let r,o,i=Date.now();n(e);const s=()=>{if(this.isDisposed)return void o();const a=Date.now(),c=a-i;i=a;const l=Math.max(1,Math.floor(c/t)),h=t*l;if((e-=h){"visible"===document.visibilityState&&(clearTimeout(r),n(0),o())};r=setTimeout(s,t),document.addEventListener("visibilitychange",a),await new Promise((e=>o=e)),document.removeEventListener("visibilitychange",a)}}class Cr{constructor(e=!0,t,n,r=0){this.singleRuntime=e,this.logger=t,this.webRendererId=r,this.afterStartedCallbacks=[],n&&this.afterStartedCallbacks.push(...n)}async importInitializersAsync(e,t){await Promise.all(e.map((e=>async function(e,n){let r;var o;n.moduleExports||(o=n.name,r=new URL(o,document.baseURI).toString(),n.moduleExports=await import(r));const i=n.moduleExports;if(void 0!==i){if(e.singleRuntime){const{beforeStart:n,afterStarted:r,beforeWebAssemblyStart:o,afterWebAssemblyStarted:a,beforeServerStart:c,afterServerStarted:l}=i;let h=n;e.webRendererId===un.Server&&c&&(h=c),e.webRendererId===un.WebAssembly&&o&&(h=o);let u=r;return e.webRendererId===un.Server&&l&&(u=l),e.webRendererId===un.WebAssembly&&a&&(u=a),s(e,h,u,t)}return function(e,t,n){const o=n[0],{beforeStart:i,afterStarted:a,beforeWebStart:c,afterWebStarted:l,beforeWebAssemblyStart:h,afterWebAssemblyStarted:u,beforeServerStart:d,afterServerStarted:p}=t,f=!(c||l||h||u||d||p||!i&&!a),g=f&&o.enableClassicInitializers;if(f&&!o.enableClassicInitializers)e.logger?.log(Ze.Warning,`Initializer '${r}' will be ignored because multiple runtimes are available. Use 'before(Web|WebAssembly|Server)Start' and 'after(Web|WebAssembly|Server)Started' instead.`);else if(g)return s(e,i,a,n);if(function(e){e.webAssembly?e.webAssembly.initializers||(e.webAssembly.initializers={beforeStart:[],afterStarted:[]}):e.webAssembly={initializers:{beforeStart:[],afterStarted:[]}},e.circuit?e.circuit.initializers||(e.circuit.initializers={beforeStart:[],afterStarted:[]}):e.circuit={initializers:{beforeStart:[],afterStarted:[]}}}(o),h&&o.webAssembly.initializers.beforeStart.push(h),u&&o.webAssembly.initializers.afterStarted.push(u),d&&o.circuit.initializers.beforeStart.push(d),p&&o.circuit.initializers.afterStarted.push(p),l&&e.afterStartedCallbacks.push(l),c)return c(o)}(e,i,t)}function s(e,t,n,r){if(n&&e.afterStartedCallbacks.push(n),t)return t(...r)}}(this,e))))}async invokeAfterStartedCallbacks(e){const t=(n=this.webRendererId,C.get(n)?.[1]);var n;t&&await t,await Promise.all(this.afterStartedCallbacks.map((t=>t(e))))}}function Er(e){if(void 0!==fr)throw new Error("Blazor Server has already started.");return fr=new Promise(Ir.bind(null,e)),fr}async function Ir(e,t,n){await lr;const r=await async function(e){if(e.initializers)return await Promise.all(e.initializers.beforeStart.map((t=>t(e)))),new Cr(!1,void 0,e.initializers.afterStarted,un.Server);const t=await fetch("_blazor/initializers",{method:"GET",credentials:"include",cache:"no-cache"}),n=(await t.json()).map((e=>({name:e}))),r=new Cr(!0,void 0,void 0,un.Server);return await r.importInitializersAsync(n,[e]),r}(dr);if(hr=ot(document)||"",pr=new nt(dr.logLevel),ur=new yr(e,hr,dr,pr),pr.log(Ze.Information,"Starting up Blazor server-side application."),Qe.reconnect=async()=>!(ur.didRenderingFail()||!await ur.reconnect()&&(pr.log(Ze.Information,"Reconnection attempt to the circuit was rejected by the server. This may indicate that the associated state is no longer available on the server."),1)),Qe.pauseCircuit=async()=>!(ur.didRenderingFail()||!await ur.pause()&&(pr.log(Ze.Information,"Pause attempt to the circuit was rejected by the server. This may indicate that the associated state is no longer available on the server."),1)),Qe.resumeCircuit=async()=>!(ur.didRenderingFail()||!await ur.resume()&&(pr.log(Ze.Information,"Resume attempt to the circuit was rejected by the server. This may indicate that the associated state is no longer available on the server."),1)),Qe.defaultReconnectionHandler=new br(pr),dr.reconnectionHandler=dr.reconnectionHandler||Qe.defaultReconnectionHandler,Qe._internal.navigationManager.listenForNavigationEvents(un.Server,((e,t,n)=>ur.sendLocationChanged(e,t,n)),((e,t,n,r)=>ur.sendLocationChanging(e,t,n,r))),Qe._internal.forceCloseConnection=()=>ur.disconnect(),Qe._internal.sendJSDataStream=(e,t,n)=>ur.sendJsDataStream(e,t,n),!await ur.start())return pr.log(Ze.Error,"Failed to start the circuit."),void t();const o=()=>{ur.sendDisconnectBeacon()};Qe.disconnect=o,window.addEventListener("pagehide",o,{capture:!1,once:!0}),pr.log(Ze.Information,"Blazor server-side application started."),r.invokeAfterStartedCallbacks(Qe),t()}class kr{constructor(e){this.initialComponents=e}resolveRootComponent(e){return this.initialComponents[e]}}class Tr{constructor(){this._eventListeners=new Map}static create(e){const t=new Tr;return e.addEventListener=t.addEventListener.bind(t),e.removeEventListener=t.removeEventListener.bind(t),t}addEventListener(e,t){let n=this._eventListeners.get(e);n||(n=new Set,this._eventListeners.set(e,n)),n.add(t)}removeEventListener(e,t){this._eventListeners.get(e)?.delete(t)}dispatchEvent(e,t){const n=this._eventListeners.get(e);if(!n)return;const r={...t,type:e};for(const e of n)e(r)}}let Rr=!1;function Dr(e){if(Rr)throw new Error("Blazor has already started.");Rr=!0;const t=et(e);!function(e){if(dr)throw new Error("Circuit options have already been configured.");lr=async function(e){const t=await e;dr=et(t)}(e)}(Promise.resolve(t||{})),Tr.create(Qe);const n=function(e){return st(e,"server").sort(((e,t)=>e.sequence-t.sequence))}(document);return Er(new kr(n))}Qe.start=Dr,window.DotNet=e,document&&document.currentScript&&"false"!==document.currentScript.getAttribute("autostart")&&Dr()}(); +//# sourceMappingURL=blazor.server.js.map diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js.br new file mode 100644 index 0000000..f5bd709 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js.gz new file mode 100644 index 0000000..a42d2e2 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.server.js.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js new file mode 100644 index 0000000..254fad7 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js @@ -0,0 +1 @@ +!function(){"use strict";var e;let t;var n,o;!function(e){const t=[],n="__jsObjectId",o="__dotNetObject",r="__byte[]",i="__dotNetStream",s="__jsStreamReferenceLength";let a,c,l;class h{constructor(e){this._jsObject=e,this._cachedHandlers=new Map}resolveInvocationHandler(e,t){var n;const o=null===(n=this._cachedHandlers.get(e))||void 0===n?void 0:n[t];if(o)return o;const[r,i]=E(this._jsObject,e),s=function(e,t,n,o){switch(n){case l.FunctionCall:const n=e[t];if(n instanceof Function)return n.bind(e);throw new Error(`The value '${o}' is not a function.`);case l.ConstructorCall:const r=e[t];if(r instanceof Function){const t=r.bind(e);return(...e)=>new t(...e)}throw new Error(`The value '${o}' is not a function.`);case l.GetValue:if(!function(e,t){if(!(t in e))return!1;for(;void 0!==e;){const n=Object.getOwnPropertyDescriptor(e,t);if(n)return!!n.hasOwnProperty("value")||n.hasOwnProperty("get")&&"function"==typeof n.get;e=Object.getPrototypeOf(e)}return!1}(e,t))throw new Error(`The property '${o}' is not defined or is not readable.`);return()=>e[t];case l.SetValue:if(!function(e,t){if(!(t in e))return Object.isExtensible(e);for(;void 0!==e;){const n=Object.getOwnPropertyDescriptor(e,t);if(n)return!(!n.hasOwnProperty("value")||!n.writable)||n.hasOwnProperty("set")&&"function"==typeof n.set;e=Object.getPrototypeOf(e)}return!1}(e,t))throw new Error(`The property '${o}' is not writable.`);return(...n)=>e[t]=n[0]}}(r,i,t,e);return this.addHandlerToCache(e,s,t),s}getWrappedObject(){return this._jsObject}addHandlerToCache(e,t,n){const o=this._cachedHandlers.get(e);o?o[n]=t:this._cachedHandlers.set(e,{[n]:t})}}!function(e){e[e.FunctionCall=1]="FunctionCall",e[e.ConstructorCall=2]="ConstructorCall",e[e.GetValue=3]="GetValue",e[e.SetValue=4]="SetValue"}(l=e.JSCallType||(e.JSCallType={}));const d=0,u={[d]:new h(window)};u[0]._cachedHandlers.set("import",{[l.FunctionCall]:e=>("string"==typeof e&&e.startsWith("./")&&(e=new URL(e.substring(2),document.baseURI).toString()),import(e))});let p,f=1;function g(e){t.push(e)}function m(e){if(null==e)return{[n]:-1};if(e&&("object"==typeof e||e instanceof Function)){u[f]=new h(e);const t={[n]:f};return f++,t}throw new Error(`Cannot create a JSObjectReference from the value '${e}'.`)}function y(e){let t=-1;if(e instanceof ArrayBuffer&&(e=new Uint8Array(e)),e instanceof Blob)t=e.size;else{if(!(e.buffer instanceof ArrayBuffer))throw new Error("Supplied value is not a typed array or blob.");if(void 0===e.byteLength)throw new Error(`Cannot create a JSStreamReference from the value '${e}' as it doesn't have a byteLength.`);t=e.byteLength}const o={[s]:t};try{const t=m(e);o[n]=t[n]}catch(t){throw new Error(`Cannot create a JSStreamReference from the value '${e}'.`)}return o}function v(e,n){c=e;const o=n?JSON.parse(n,((e,n)=>t.reduce(((t,n)=>n(e,t)),n))):null;return c=void 0,o}function w(){if(void 0===a)throw new Error("No call dispatcher has been set.");if(null===a)throw new Error("There are multiple .NET runtimes present, so a default dispatcher could not be resolved. Use DotNetObject to invoke .NET instance methods.");return a}e.attachDispatcher=function(e){const t=new b(e);return void 0===a?a=t:a&&(a=null),t},e.attachReviver=g,e.invokeMethod=function(e,t,...n){return w().invokeDotNetStaticMethod(e,t,...n)},e.invokeMethodAsync=function(e,t,...n){return w().invokeDotNetStaticMethodAsync(e,t,...n)},e.createJSObjectReference=m,e.createJSStreamReference=y,e.disposeJSObjectReference=function(e){const t=e&&e[n];"number"==typeof t&&-1!==t&&C(t)},function(e){e[e.Default=0]="Default",e[e.JSObjectReference=1]="JSObjectReference",e[e.JSStreamReference=2]="JSStreamReference",e[e.JSVoidResult=3]="JSVoidResult"}(p=e.JSCallResultType||(e.JSCallResultType={}));class b{constructor(e){this._dotNetCallDispatcher=e,this._byteArraysToBeRevived=new Map,this._pendingDotNetToJSStreams=new Map,this._pendingAsyncCalls={},this._nextAsyncCallId=1}getDotNetCallDispatcher(){return this._dotNetCallDispatcher}invokeJSFromDotNet(e,t,n,o,r){const i=T(this.processJSCall(o,e,r,t),n);return null==i?null:D(this,i)}async beginInvokeJSFromDotNet(e,t,n,o,r,i){try{const s=this.processJSCall(r,t,i,n);if(e){const t=D(this,[e,!0,T(await s,o)]);this._dotNetCallDispatcher.endInvokeJSFromDotNet(e,!0,t)}}catch(t){if(e){const n=JSON.stringify([e,!1,_(t)]);this._dotNetCallDispatcher.endInvokeJSFromDotNet(e,!1,n)}}}processJSCall(e,t,n,o){var r;const i=null!==(r=v(this,o))&&void 0!==r?r:[];return S(t,e,n)(...i)}endInvokeDotNetFromJS(e,t,n){const o=t?v(this,n):new Error(n);this.completePendingCall(parseInt(e,10),t,o)}invokeDotNetStaticMethod(e,t,...n){return this.invokeDotNetMethod(e,t,null,n)}invokeDotNetStaticMethodAsync(e,t,...n){return this.invokeDotNetMethodAsync(e,t,null,n)}invokeDotNetMethod(e,t,n,o){if(this._dotNetCallDispatcher.invokeDotNetFromJS){const r=D(this,o),i=this._dotNetCallDispatcher.invokeDotNetFromJS(e,t,n,r);return i?v(this,i):null}throw new Error("The current dispatcher does not support synchronous calls from JS to .NET. Use invokeDotNetMethodAsync instead.")}invokeDotNetMethodAsync(e,t,n,o){if(e&&n)throw new Error(`For instance method calls, assemblyName should be null. Received '${e}'.`);const r=this._nextAsyncCallId++,i=new Promise(((e,t)=>{this._pendingAsyncCalls[r]={resolve:e,reject:t}}));try{const i=D(this,o);this._dotNetCallDispatcher.beginInvokeDotNetFromJS(r,e,t,n,i)}catch(e){this.completePendingCall(r,!1,e)}return i}receiveByteArray(e,t){this._byteArraysToBeRevived.set(e,t)}processByteArray(e){const t=this._byteArraysToBeRevived.get(e);return t?(this._byteArraysToBeRevived.delete(e),t):null}supplyDotNetStream(e,t){if(this._pendingDotNetToJSStreams.has(e)){const n=this._pendingDotNetToJSStreams.get(e);this._pendingDotNetToJSStreams.delete(e),n.resolve(t)}else{const n=new R;n.resolve(t),this._pendingDotNetToJSStreams.set(e,n)}}getDotNetStreamPromise(e){let t;if(this._pendingDotNetToJSStreams.has(e))t=this._pendingDotNetToJSStreams.get(e).streamPromise,this._pendingDotNetToJSStreams.delete(e);else{const n=new R;this._pendingDotNetToJSStreams.set(e,n),t=n.streamPromise}return t}completePendingCall(e,t,n){if(!this._pendingAsyncCalls.hasOwnProperty(e))throw new Error(`There is no pending async call with ID ${e}.`);const o=this._pendingAsyncCalls[e];delete this._pendingAsyncCalls[e],t?o.resolve(n):o.reject(n)}}function _(e){return e instanceof Error?`${e.message}\n${e.stack}`:e?e.toString():"null"}function S(e,t,n){const o=u[t];if(o)return o.resolveInvocationHandler(e,null!=n?n:l.FunctionCall);throw new Error(`JS object instance with ID ${t} does not exist (has it been disposed?).`)}function C(e){delete u[e]}function E(e,t){const n=t.split(".");let o=e;for(let e=0;econsole.error(e)))}serializeAsArg(){return{[o]:this._id}}}e.DotNetObject=I,g((function(e,t){if(t&&"object"==typeof t){if(t.hasOwnProperty(o))return new I(t[o],c);if(t.hasOwnProperty(n)){const e=t[n],o=u[e];if(o)return o.getWrappedObject();throw new Error(`JS object instance with Id '${e}' does not exist. It may have been disposed.`)}if(t.hasOwnProperty(r)){const e=t[r],n=c.processByteArray(e);if(void 0===n)throw new Error(`Byte array index '${e}' does not exist.`);return n}if(t.hasOwnProperty(i)){const e=t[i],n=c.getDotNetStreamPromise(e);return new k(n)}}return t}));class k{constructor(e){this._streamPromise=e}stream(){return this._streamPromise}async arrayBuffer(){return new Response(await this.stream()).arrayBuffer()}}class R{constructor(){this.streamPromise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}function T(e,t){switch(t){case p.Default:return e;case p.JSObjectReference:return m(e);case p.JSStreamReference:return y(e);case p.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${t}'.`)}}let A=0;function D(e,t){A=0,c=e;const n=JSON.stringify(t,N);return c=void 0,n}function N(e,t){if(t instanceof I)return t.serializeAsArg();if(t instanceof Uint8Array){c.getDotNetCallDispatcher().sendByteArray(A,t);const e={[r]:A};return A++,e}return t}}(e||(e={})),function(e){e[e.prependFrame=1]="prependFrame",e[e.removeFrame=2]="removeFrame",e[e.setAttribute=3]="setAttribute",e[e.removeAttribute=4]="removeAttribute",e[e.updateText=5]="updateText",e[e.stepIn=6]="stepIn",e[e.stepOut=7]="stepOut",e[e.updateMarkup=8]="updateMarkup",e[e.permutationListEntry=9]="permutationListEntry",e[e.permutationListEnd=10]="permutationListEnd"}(n||(n={})),function(e){e[e.element=1]="element",e[e.text=2]="text",e[e.attribute=3]="attribute",e[e.component=4]="component",e[e.region=5]="region",e[e.elementReferenceCapture=6]="elementReferenceCapture",e[e.markup=8]="markup",e[e.namedEvent=10]="namedEvent"}(o||(o={}));class r{constructor(e,t){this.componentId=e,this.fieldValue=t}static fromEvent(e,t){const n=t.target;if(n instanceof Element){const t=function(e){return e instanceof HTMLInputElement?e.type&&"checkbox"===e.type.toLowerCase()?{value:e.checked}:{value:e.value}:e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement?{value:e.value}:null}(n);if(t)return new r(e,t.value)}return null}}const i=new Map,s=new Map,a=[];function c(e){return i.get(e)}function l(e){const t=i.get(e);return t?.browserEventName||e}function h(e,t){e.forEach((e=>i.set(e,t)))}function d(e){const t=[];for(let n=0;ne.selected)).map((e=>e.value))}}{const e=function(e){return!!e&&"INPUT"===e.tagName&&"checkbox"===e.getAttribute("type")}(t);return{value:e?!!t.checked:t.value}}}}),h(["copy","cut","paste"],{createEventArgs:e=>({type:e.type})}),h(["drag","dragend","dragenter","dragleave","dragover","dragstart","drop"],{createEventArgs:e=>{return{...u(t=e),dataTransfer:t.dataTransfer?{dropEffect:t.dataTransfer.dropEffect,effectAllowed:t.dataTransfer.effectAllowed,files:Array.from(t.dataTransfer.files).map((e=>e.name)),items:Array.from(t.dataTransfer.items).map((e=>({kind:e.kind,type:e.type}))),types:t.dataTransfer.types}:null};var t}}),h(["focus","blur","focusin","focusout"],{createEventArgs:e=>({type:e.type})}),h(["keydown","keyup","keypress"],{createEventArgs:e=>{return{key:(t=e).key,code:t.code,location:t.location,repeat:t.repeat,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type,isComposing:t.isComposing};var t}}),h(["contextmenu","click","mouseover","mouseout","mousemove","mousedown","mouseup","mouseleave","mouseenter","dblclick"],{createEventArgs:e=>u(e)}),h(["error"],{createEventArgs:e=>{return{message:(t=e).message,filename:t.filename,lineno:t.lineno,colno:t.colno,type:t.type};var t}}),h(["loadstart","timeout","abort","load","loadend","progress"],{createEventArgs:e=>{return{lengthComputable:(t=e).lengthComputable,loaded:t.loaded,total:t.total,type:t.type};var t}}),h(["touchcancel","touchend","touchmove","touchenter","touchleave","touchstart"],{createEventArgs:e=>{return{detail:(t=e).detail,touches:d(t.touches),targetTouches:d(t.targetTouches),changedTouches:d(t.changedTouches),ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),h(["gotpointercapture","lostpointercapture","pointercancel","pointerdown","pointerenter","pointerleave","pointermove","pointerout","pointerover","pointerup"],{createEventArgs:e=>{return{...u(t=e),pointerId:t.pointerId,width:t.width,height:t.height,pressure:t.pressure,tiltX:t.tiltX,tiltY:t.tiltY,pointerType:t.pointerType,isPrimary:t.isPrimary};var t}}),h(["wheel","mousewheel"],{createEventArgs:e=>{return{...u(t=e),deltaX:t.deltaX,deltaY:t.deltaY,deltaZ:t.deltaZ,deltaMode:t.deltaMode};var t}}),h(["cancel","close","toggle"],{createEventArgs:()=>({})});const p=["date","datetime-local","month","time","week"],f=new Map;let g,m,y=0;const v={async add(e,t,n){if(!n)throw new Error("initialParameters must be an object, even if empty.");const o="__bl-dynamic-root:"+(++y).toString();f.set(o,e);const r=await S().invokeMethodAsync("AddRootComponent",t,o),i=new _(r,m[t]);return await i.setParameters(n),i}};function w(e){const t=f.get(e);if(t)return f.delete(e),t}class b{invoke(e){return this._callback(e)}setCallback(t){this._selfJSObjectReference||(this._selfJSObjectReference=e.createJSObjectReference(this)),this._callback=t}getJSObjectReference(){return this._selfJSObjectReference}dispose(){this._selfJSObjectReference&&e.disposeJSObjectReference(this._selfJSObjectReference)}}class _{constructor(e,t){this._jsEventCallbackWrappers=new Map,this._componentId=e;for(const e of t)"eventcallback"===e.type&&this._jsEventCallbackWrappers.set(e.name.toLowerCase(),new b)}setParameters(e){const t={},n=Object.entries(e||{}),o=n.length;for(const[e,o]of n){const n=this._jsEventCallbackWrappers.get(e.toLowerCase());n&&o?(n.setCallback(o),t[e]=n.getJSObjectReference()):t[e]=o}return S().invokeMethodAsync("SetRootComponentParameters",this._componentId,o,t)}async dispose(){if(null!==this._componentId){await S().invokeMethodAsync("RemoveRootComponent",this._componentId),this._componentId=null;for(const e of this._jsEventCallbackWrappers.values())e.dispose()}}}function S(){if(!g)throw new Error("Dynamic root components have not been enabled in this application.");return g}const C=new Map,E=[],I=new Map;function k(t,n,o,r){if(C.has(t))throw new Error(`Interop methods are already registered for renderer ${t}`);C.set(t,n),o&&r&&Object.keys(o).length>0&&function(t,n,o){if(g)throw new Error("Dynamic root components have already been enabled.");g=t,m=n;for(const[t,r]of Object.entries(o)){const o=e.findJSFunction(t,0);for(const e of r)o(e,n[e])}}(A(t),o,r),I.get(t)?.[0]?.(),function(e){for(const t of E)t(e)}(t)}function R(e){return C.has(e)}function T(e,t,n){return D(e,t.eventHandlerId,(()=>A(e).invokeMethodAsync("DispatchEventAsync",t,n)))}function A(e){const t=C.get(e);if(!t)throw new Error(`No interop methods are registered for renderer ${e}`);return t}let D=(e,t,n)=>n();const N=B(["abort","blur","cancel","canplay","canplaythrough","change","close","cuechange","durationchange","emptied","ended","error","focus","load","loadeddata","loadedmetadata","loadend","loadstart","mouseenter","mouseleave","pointerenter","pointerleave","pause","play","playing","progress","ratechange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeupdate","toggle","unload","volumechange","waiting","DOMNodeInsertedIntoDocument","DOMNodeRemovedFromDocument"]),x={submit:!0},P=B(["click","dblclick","mousedown","mousemove","mouseup"]);class M{static{this.nextEventDelegatorId=0}constructor(e){this.browserRendererId=e,this.afterClickCallbacks=[];const t=++M.nextEventDelegatorId;this.eventsCollectionKey=`_blazorEvents_${t}`,this.eventInfoStore=new L(this.onGlobalEvent.bind(this))}setListener(e,t,n,o){const r=this.getEventHandlerInfosForElement(e,!0),i=r.getHandler(t);if(i)this.eventInfoStore.update(i.eventHandlerId,n);else{const i={element:e,eventName:t,eventHandlerId:n,renderingComponentId:o};this.eventInfoStore.add(i),r.setHandler(t,i)}}getHandler(e){return this.eventInfoStore.get(e)}removeListener(e){const t=this.eventInfoStore.remove(e);if(t){const e=t.element,n=this.getEventHandlerInfosForElement(e,!1);n&&n.removeHandler(t.eventName)}}removeListenersForElement(e){const t=this.getEventHandlerInfosForElement(e,!1);if(t){for(const e of t.enumerateHandlers())this.eventInfoStore.remove(e.eventHandlerId);delete e[this.eventsCollectionKey]}}notifyAfterClick(e){this.afterClickCallbacks.push(e),this.eventInfoStore.addGlobalListener("click")}setStopPropagation(e,t,n){const o=this.getEventHandlerInfosForElement(e,!0),r=o.stopPropagation(t);o.stopPropagation(t,n),!r&&n?this.eventInfoStore.addGlobalListener(t):r&&!n&&this.eventInfoStore.decrementCountByEventName(t)}setPreventDefault(e,t,n){const o=this.getEventHandlerInfosForElement(e,!0),r=o.preventDefault(t);o.preventDefault(t,n),!r&&n?this.eventInfoStore.addActiveGlobalListener(t):r&&!n&&this.eventInfoStore.decrementCountByEventName(t)}onGlobalEvent(e){if(!(e.target instanceof Element))return;if(!R(this.browserRendererId))return;this.dispatchGlobalEventToAllElements(e.type,e);const t=(n=e.type,s.get(n));var n;t&&t.forEach((t=>this.dispatchGlobalEventToAllElements(t,e))),"click"===e.type&&this.afterClickCallbacks.forEach((t=>t(e)))}dispatchGlobalEventToAllElements(e,t){const n=t.composedPath();let o=n.shift(),i=null,s=!1;const a=Object.prototype.hasOwnProperty.call(N,e);let l=!1;for(;o;){const u=o,p=this.getEventHandlerInfosForElement(u,!1);if(p){const n=p.getHandler(e);if(n&&(h=u,d=t.type,!((h instanceof HTMLButtonElement||h instanceof HTMLInputElement||h instanceof HTMLTextAreaElement||h instanceof HTMLSelectElement)&&Object.prototype.hasOwnProperty.call(P,d)&&h.disabled))){if(!s){const n=c(e);i=n?.createEventArgs?n.createEventArgs(t):{},s=!0}Object.prototype.hasOwnProperty.call(x,t.type)&&t.preventDefault(),T(this.browserRendererId,{eventHandlerId:n.eventHandlerId,eventName:e,eventFieldInfo:r.fromEvent(n.renderingComponentId,t)},i)}p.stopPropagation(e)&&(l=!0),p.preventDefault(e)&&t.preventDefault()}o=a||l?void 0:n.shift()}var h,d}getEventHandlerInfosForElement(e,t){return Object.prototype.hasOwnProperty.call(e,this.eventsCollectionKey)?e[this.eventsCollectionKey]:t?e[this.eventsCollectionKey]=new U:null}}class L{constructor(e){this.globalListener=e,this.infosByEventHandlerId={},this.countByEventName={},a.push(this.handleEventNameAliasAdded.bind(this))}add(e){if(this.infosByEventHandlerId[e.eventHandlerId])throw new Error(`Event ${e.eventHandlerId} is already tracked`);this.infosByEventHandlerId[e.eventHandlerId]=e,this.addGlobalListener(e.eventName)}get(e){return this.infosByEventHandlerId[e]}addGlobalListener(e){if(e=l(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e))this.countByEventName[e]++;else{this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(N,e);document.addEventListener(e,this.globalListener,t)}}addActiveGlobalListener(e){e=l(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e)?(this.countByEventName[e]++,document.removeEventListener(e,this.globalListener)):this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(N,e);document.addEventListener(e,this.globalListener,{capture:t,passive:!1})}update(e,t){if(Object.prototype.hasOwnProperty.call(this.infosByEventHandlerId,t))throw new Error(`Event ${t} is already tracked`);const n=this.infosByEventHandlerId[e];delete this.infosByEventHandlerId[e],n.eventHandlerId=t,this.infosByEventHandlerId[t]=n}remove(e){const t=this.infosByEventHandlerId[e];if(t){delete this.infosByEventHandlerId[e];const n=l(t.eventName);this.decrementCountByEventName(n)}return t}decrementCountByEventName(e){0==--this.countByEventName[e]&&(delete this.countByEventName[e],document.removeEventListener(e,this.globalListener))}handleEventNameAliasAdded(e,t){if(Object.prototype.hasOwnProperty.call(this.countByEventName,e)){const n=this.countByEventName[e];delete this.countByEventName[e],document.removeEventListener(e,this.globalListener),this.addGlobalListener(t),this.countByEventName[t]+=n-1}}}class U{constructor(){this.handlers={},this.preventDefaultFlags=null,this.stopPropagationFlags=null}*enumerateHandlers(){for(const e in this.handlers)Object.prototype.hasOwnProperty.call(this.handlers,e)&&(yield this.handlers[e])}getHandler(e){return Object.prototype.hasOwnProperty.call(this.handlers,e)?this.handlers[e]:null}setHandler(e,t){this.handlers[e]=t}removeHandler(e){delete this.handlers[e]}preventDefault(e,t){return void 0!==t&&(this.preventDefaultFlags=this.preventDefaultFlags||{},this.preventDefaultFlags[e]=t),!!this.preventDefaultFlags&&this.preventDefaultFlags[e]}stopPropagation(e,t){return void 0!==t&&(this.stopPropagationFlags=this.stopPropagationFlags||{},this.stopPropagationFlags[e]=t),!!this.stopPropagationFlags&&this.stopPropagationFlags[e]}}function B(e){const t={};return e.forEach((e=>{t[e]=!0})),t}const O=Symbol(),F=Symbol(),$=Symbol();function H(e){const{start:t,end:n}=e,o=t[$];if(o){if(o!==e)throw new Error("The start component comment was already associated with another component descriptor.");return t}const r=t.parentNode;if(!r)throw new Error(`Comment not connected to the DOM ${t.textContent}`);const i=j(r,!0),s=Y(i);t[F]=i,t[$]=e;const a=j(t);if(n){const e=Y(a),o=Array.prototype.indexOf.call(s,a)+1;let r=null;for(;r!==n;){const n=s.splice(o,1)[0];if(!n)throw new Error("Could not find the end component comment in the parent logical node list");n[F]=t,e.push(n),r=n}}return a}function j(e,t){if(O in e)return e;const n=[];if(e.childNodes.length>0){if(!t)throw new Error("New logical elements must start empty, or allowExistingContents must be true");e.childNodes.forEach((t=>{const o=j(t,!0);o[F]=e,n.push(o)}))}return e[O]=n,e}function W(e){const t=Y(e);for(;t.length;)J(e,0)}function z(e,t){const n=document.createComment("!");return q(n,e,t),n}function q(e,t,n){const o=e;let r=e;if(e instanceof Comment){const t=Y(o);if(t?.length>0){const t=re(o),n=new Range;n.setStartBefore(e),n.setEndAfter(t),r=n.extractContents()}}const i=V(o);if(i){const e=Y(i),t=Array.prototype.indexOf.call(e,o);e.splice(t,1),delete o[F]}const s=Y(t);if(n0;)J(n,0)}const o=n;o.parentNode.removeChild(o)}function V(e){return e[F]||null}function K(e,t){return Y(e)[t]}function X(e){return e[$]||null}function G(e){const t=ne(e);return"http://www.w3.org/2000/svg"===t.namespaceURI&&"foreignObject"!==t.tagName}function Y(e){return e[O]}function Q(e){const t=Y(V(e));return t[Array.prototype.indexOf.call(t,e)+1]||null}function Z(e){return O in e}function*ee(e){const t=Y(e);for(const e of t)yield*ee(e);yield e}function te(e,t){const n=Y(e);t.forEach((e=>{e.moveRangeStart=n[e.fromSiblingIndex],e.moveRangeEnd=re(e.moveRangeStart)})),t.forEach((t=>{const o=document.createComment("marker");t.moveToBeforeMarker=o;const r=n[t.toSiblingIndex+1];r?r.parentNode.insertBefore(o,r):oe(o,e)})),t.forEach((e=>{const t=e.moveToBeforeMarker,n=t.parentNode,o=e.moveRangeStart,r=e.moveRangeEnd;let i=o;for(;i;){const e=i.nextSibling;if(n.insertBefore(i,t),i===r)break;i=e}n.removeChild(t)})),t.forEach((e=>{n[e.toSiblingIndex]=e.moveRangeStart}))}function ne(e){if(e instanceof Element||e instanceof DocumentFragment)return e;if(e instanceof Comment)return e.parentNode;throw new Error("Not a valid logical element")}function oe(e,t){if(t instanceof Element||t instanceof DocumentFragment)t.appendChild(e);else{if(!(t instanceof Comment))throw new Error(`Cannot append node because the parent is not a valid logical element. Parent: ${t}`);{const n=Q(t);n?n.parentNode.insertBefore(e,n):oe(e,V(t))}}}function re(e){if(e instanceof Element||e instanceof DocumentFragment)return e;const t=Q(e);if(t)return t.previousSibling;{const t=V(e);return t instanceof Element||t instanceof DocumentFragment?t.lastChild:re(t)}}function ie(e){return`_bl_${e}`}const se="__internalId";e.attachReviver(((e,t)=>t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,se)&&"string"==typeof t[se]?function(e){const t=`[${ie(e)}]`;return document.querySelector(t)}(t[se]):t));const ae="_blazorDeferredValue";function ce(e){e instanceof HTMLOptionElement?ue(e):ae in e&&de(e,e[ae])}function le(e){return"select-multiple"===e.type}function he(e,t){e.value=t||""}function de(e,t){e instanceof HTMLSelectElement?le(e)?function(e,t){t||=[];for(let n=0;n{ze()&&Le(e,(e=>{et(e,!0,!1)}))}))}getRootComponentCount(){return this.rootComponentIds.size}attachRootComponentToLogicalElement(e,t,n){if(be(t))throw new Error(`Root component '${e}' could not be attached because its target element is already associated with a root component`);n&&(t=z(t,Y(t).length)),we(t,!0),this.attachComponentToElement(e,t),this.rootComponentIds.add(e),ge.add(t)}updateComponent(e,t,n,o){const r=this.childComponentLocations[t];if(!r)throw new Error(`No element is currently associated with component ${t}`);ge.delete(r)&&(this.detachEventHandlersFromElement(r),W(r),r instanceof Comment&&(r.textContent="!"));const i=ne(r)?.getRootNode(),s=i&&i.activeElement;this.applyEdits(e,t,r,0,n,o),s instanceof HTMLElement&&i&&i.activeElement!==s&&s.focus()}disposeComponent(e){if(this.rootComponentIds.delete(e)){const t=this.childComponentLocations[e];we(t,!1),!0===t[ye]?ge.add(t):W(t)}delete this.childComponentLocations[e]}disposeEventHandler(e){this.eventDelegator.removeListener(e)}attachComponentToElement(e,t){this.childComponentLocations[e]=t}detachEventHandlersFromElement(e){for(const t of ee(e))t instanceof Element&&this.eventDelegator.removeListenersForElement(t)}applyEdits(e,t,o,r,i,s){let a,c=0,l=r;const h=e.arrayBuilderSegmentReader,d=e.editReader,u=e.frameReader,p=h.values(i),f=h.offset(i),g=f+h.count(i);for(let i=f;i{const t=document.createElement("script");t.textContent=e.textContent,e.getAttributeNames().forEach((n=>{t.setAttribute(n,e.getAttribute(n))})),e.parentNode.replaceChild(t,e)})),pe.content));var s;let a=0;for(;i.firstChild;)q(i.firstChild,r,a++)}applyAttribute(e,t,n,o){const r=e.frameReader,i=r.attributeName(o),s=r.attributeEventHandlerId(o);if(s){const e=Ce(i);return void this.eventDelegator.setListener(n,e,s,t)}const a=r.attributeValue(o);this.setOrRemoveAttributeOrProperty(n,i,a)}insertFrameRange(e,t,n,o,r,i,s){const a=o;for(let a=i;a{it(t,e)})},enableNavigationInterception:function(e){if(void 0!==Ie&&Ie!==e)throw new Error("Only one interactive runtime may enable navigation interception at a time.");Ie=e},setHasLocationChangingListeners:function(e,t){const n=Xe.get(e);if(!n)throw new Error(`Renderer with ID '${e}' is not listening for navigation events`);n.hasLocationChangingEventListeners=t},endLocationChanging:function(e,t){Ye&&e===Ke&&(Ye(t),Ye=null)},navigateTo:function(e,t){Ze(e,t,!0)},refresh:function(e){!e&&He()?je(location.href,!0):location.reload()},getBaseURI:()=>document.baseURI,getLocationHref:()=>location.href,scrollToElement:$e};function Ze(e,t,n=!1){const o=We(e);!t.forceLoad&&Ue(o)?ct()?et(o,!1,t.replaceHistoryEntry,t.historyEntryState,n):je(o,t.replaceHistoryEntry):function(e,t){if(location.href===e){const t=e+"?";history.replaceState(null,"",t),location.replace(e)}else t?location.replace(e):location.href=e}(e,t.replaceHistoryEntry)}async function et(e,t,n,o=void 0,r=!1){if(ot(),Be(location.href,e))return tt(e,n,o),void Fe(e);const i=at();(r||!i?.hasLocationChangingEventListeners||await rt(e,o,t,i))&&(Oe(e,location.href)||Pe(),tt(e,n,o),await it(t))}function tt(e,t,n=void 0){t?history.replaceState({userState:n,_index:Ve},"",e):(Ve++,history.pushState({userState:n,_index:Ve},"",e))}function nt(e){return new Promise((t=>{const n=Ge;Ge=()=>{Ge=n,t()},history.go(e)}))}function ot(){Ye&&(Ye(!1),Ye=null)}function rt(e,t,n,o){return new Promise((r=>{ot(),Ke++,Ye=r,o.locationChanging(Ke,e,t,n)}))}async function it(e,t){const n=t??location.href;await Promise.all(Array.from(Xe,(async([t,o])=>{R(t)&&await o.locationChanged(n,history.state?.userState,e)})))}async function st(e){Ge&&ct()&&await Ge(e),Ve=history.state?._index??0}function at(){const e=qe();if(void 0!==e)return Xe.get(e)}function ct(){return ze()||!He()}const lt={focus:function(e,t){if(e instanceof HTMLElement)e.focus({preventScroll:t});else{if(!(e instanceof SVGElement))throw new Error("Unable to focus an invalid element.");if(!e.hasAttribute("tabindex"))throw new Error("Unable to focus an SVG element that does not have a tabindex.");e.focus({preventScroll:t})}},focusBySelector:function(e){const t=document.querySelector(e);t&&(t.hasAttribute("tabindex")||(t.tabIndex=-1),t.focus({preventScroll:!0}))}},ht={init:function(e,t,n,o=50){const r=ut(t);(r||document.documentElement).style.overflowAnchor="none";const i=document.createRange();u(n.parentElement)&&(t.style.display="table-row",n.style.display="table-row");const s=new IntersectionObserver((function(o){o.forEach((o=>{if(!o.isIntersecting)return;i.setStartAfter(t),i.setEndBefore(n);const r=i.getBoundingClientRect().height,s=o.rootBounds?.height;o.target===t?e.invokeMethodAsync("OnSpacerBeforeVisible",o.intersectionRect.top-o.boundingClientRect.top,r,s):o.target===n&&n.offsetHeight>0&&e.invokeMethodAsync("OnSpacerAfterVisible",o.boundingClientRect.bottom-o.intersectionRect.bottom,r,s)}))}),{root:r,rootMargin:`${o}px`});s.observe(t),s.observe(n);const a=d(t),c=d(n),{observersByDotNetObjectId:l,id:h}=pt(e);function d(e){const t={attributes:!0},n=new MutationObserver(((n,o)=>{u(e.parentElement)&&(o.disconnect(),e.style.display="table-row",o.observe(e,t)),s.unobserve(e),s.observe(e)}));return n.observe(e,t),n}function u(e){return null!==e&&(e instanceof HTMLTableElement&&""===e.style.display||"table"===e.style.display||e instanceof HTMLTableSectionElement&&""===e.style.display||"table-row-group"===e.style.display)}l[h]={intersectionObserver:s,mutationObserverBefore:a,mutationObserverAfter:c}},dispose:function(e){const{observersByDotNetObjectId:t,id:n}=pt(e),o=t[n];o&&(o.intersectionObserver.disconnect(),o.mutationObserverBefore.disconnect(),o.mutationObserverAfter.disconnect(),e.dispose(),delete t[n])}},dt=Symbol();function ut(e){return e&&e!==document.body&&e!==document.documentElement?"visible"!==getComputedStyle(e).overflowY?e:ut(e.parentElement):null}function pt(e){const t=e._callDispatcher,n=e._id;return t[dt]??={},{observersByDotNetObjectId:t[dt],id:n}}const ft={getAndRemoveExistingTitle:function(){const e=document.head?document.head.getElementsByTagName("title"):[];if(0===e.length)return null;let t=null;for(let n=e.length-1;n>=0;n--){const o=e[n],r=o.previousSibling;r instanceof Comment&&null!==V(r)||(null===t&&(t=o.textContent),o.parentNode?.removeChild(o))}return t}},gt={init:function(e,t){t._blazorInputFileNextFileId=0,t.addEventListener("click",(function(){t.value=""})),t.addEventListener("change",(function(){t._blazorFilesById={};const n=Array.prototype.map.call(t.files,(function(e){const n={id:++t._blazorInputFileNextFileId,lastModified:new Date(e.lastModified).toISOString(),name:e.name,size:e.size,contentType:e.type,readPromise:void 0,arrayBuffer:void 0,blob:e};return t._blazorFilesById[n.id]=n,n}));e.invokeMethodAsync("NotifyChange",n)}))},toImageFile:async function(e,t,n,o,r){const i=mt(e,t),s=await new Promise((function(e){const t=new Image;t.onload=function(){URL.revokeObjectURL(t.src),e(t)},t.onerror=function(){t.onerror=null,URL.revokeObjectURL(t.src)},t.src=URL.createObjectURL(i.blob)})),a=await new Promise((function(e){const t=Math.min(1,o/s.width),i=Math.min(1,r/s.height),a=Math.min(t,i),c=document.createElement("canvas");c.width=Math.round(s.width*a),c.height=Math.round(s.height*a),c.getContext("2d")?.drawImage(s,0,0,c.width,c.height),c.toBlob(e,n)})),c={id:++e._blazorInputFileNextFileId,lastModified:i.lastModified,name:i.name,size:a?.size||0,contentType:n,blob:a||i.blob};return e._blazorFilesById[c.id]=c,c},readFileData:async function(e,t){return mt(e,t).blob}};function mt(e,t){const n=e._blazorFilesById[t];if(!n)throw new Error(`There is no file with ID ${t}. The file list may have changed. See https://aka.ms/aspnet/blazor-input-file-multiple-selections.`);return n}const yt=new Set,vt={enableNavigationPrompt:function(e){0===yt.size&&window.addEventListener("beforeunload",wt),yt.add(e)},disableNavigationPrompt:function(e){yt.delete(e),0===yt.size&&window.removeEventListener("beforeunload",wt)}};function wt(e){e.preventDefault(),e.returnValue=!0}async function bt(e,t,n){return e instanceof Blob?await async function(e,t,n){const o=e.slice(t,t+n),r=await o.arrayBuffer();return new Uint8Array(r)}(e,t,n):function(e,t,n){return new Uint8Array(e.buffer,e.byteOffset+t,n)}(e,t,n)}const _t=new Map,St={navigateTo:function(e,t,n=!1){Ze(e,t instanceof Object?t:{forceLoad:t,replaceHistoryEntry:n})},registerCustomEventType:function(e,t){if(!t)throw new Error("The options parameter is required.");if(i.has(e))throw new Error(`The event '${e}' is already registered.`);if(t.browserEventName){const n=s.get(t.browserEventName);n?n.push(e):s.set(t.browserEventName,[e]),a.forEach((n=>n(e,t.browserEventName)))}i.set(e,t)},rootComponents:v,runtime:{},_internal:{navigationManager:Qe,domWrapper:lt,Virtualize:ht,PageTitle:ft,InputFile:gt,NavigationLock:vt,getJSDataStreamChunk:bt,attachWebRendererInterop:k}};var Ct;window.Blazor=St,function(e){e[e.Trace=0]="Trace",e[e.Debug=1]="Debug",e[e.Information=2]="Information",e[e.Warning=3]="Warning",e[e.Error=4]="Error",e[e.Critical=5]="Critical",e[e.None=6]="None"}(Ct||(Ct={})),class e{static{this.instance=new e}log(e,t){}};let Et=class{constructor(e){this.minLevel=e}log(e,t){if(e>=this.minLevel){const n=`[${(new Date).toISOString()}] ${Ct[e]}: ${t}`;switch(e){case Ct.Critical:case Ct.Error:console.error(n);break;case Ct.Warning:console.warn(n);break;case Ct.Information:console.info(n);break;default:console.log(n)}}}};function It(e,t){switch(t){case"webassembly":return Pt(e,"webassembly");case"server":return function(e){return Pt(e,"server").sort(((e,t)=>e.sequence-t.sequence))}(e);case"auto":return Pt(e,"auto")}}const kt=/^\s*Blazor-Server-Component-State:(?[a-zA-Z0-9+/=]+)$/,Rt=/^\s*Blazor-WebAssembly-Component-State:(?[a-zA-Z0-9+/=]+)$/,Tt=/^\s*Blazor-Web-Initializers:(?[a-zA-Z0-9+/=]+)$/,At=/^\s*Blazor-WebAssembly:[^{]*(?.*)$/;function Dt(e){return xt(e,kt)}function Nt(e){return xt(e,Rt)}function xt(e,t,n="state"){if(e.nodeType===Node.COMMENT_NODE){const o=e.textContent||"",r=t.exec(o),i=r&&r.groups&&r.groups[n];return i&&e.parentNode?.removeChild(e),i}if(!e.hasChildNodes())return;const o=e.childNodes;for(let e=0;e.*)$/);function Lt(e,t){const n=e.currentElement;var o,r,i;if(n&&n.nodeType===Node.COMMENT_NODE&&n.textContent){const s=Mt.exec(n.textContent),a=s&&s.groups&&s.groups.descriptor;if(!a)return;!function(e){if(e.parentNode instanceof Document)throw new Error("Root components cannot be marked as interactive. The element must be rendered statically so that scripts are not evaluated multiple times.")}(n);try{const s=function(e){const t=JSON.parse(e),{type:n}=t;if("server"!==n&&"webassembly"!==n&&"auto"!==n)throw new Error(`Invalid component type '${n}'.`);return t}(a),c=function(e,t,n){const{prerenderId:o}=e;if(o){for(;n.next()&&n.currentElement;){const e=n.currentElement;if(e.nodeType!==Node.COMMENT_NODE)continue;if(!e.textContent)continue;const t=Mt.exec(e.textContent),r=t&&t[1];if(r)return Ft(r,o),e}throw new Error(`Could not find an end component comment for '${t}'.`)}}(s,n,e);if(t!==s.type)return;switch(s.type){case"webassembly":return r=n,i=c,Ot(o=s),{...o,uniqueId:Ut++,start:r,end:i};case"server":return function(e,t,n){return Bt(e),{...e,uniqueId:Ut++,start:t,end:n}}(s,n,c);case"auto":return function(e,t,n){return Bt(e),Ot(e),{...e,uniqueId:Ut++,start:t,end:n}}(s,n,c)}}catch(e){throw new Error(`Found malformed component comment at ${n.textContent}`)}}}let Ut=0;function Bt(e){const{descriptor:t,sequence:n}=e;if(!t)throw new Error("descriptor must be defined when using a descriptor.");if(void 0===n)throw new Error("sequence must be defined when using a descriptor.");if(!Number.isInteger(n))throw new Error(`Error parsing the sequence '${n}' for component '${JSON.stringify(e)}'`)}function Ot(e){const{assembly:t,typeName:n}=e;if(!t)throw new Error("assembly must be defined when using a descriptor.");if(!n)throw new Error("typeName must be defined when using a descriptor.");e.parameterDefinitions=e.parameterDefinitions&&atob(e.parameterDefinitions),e.parameterValues=e.parameterValues&&atob(e.parameterValues)}function Ft(e,t){const n=JSON.parse(e);if(1!==Object.keys(n).length)throw new Error(`Invalid end of component comment: '${e}'`);const o=n.prerenderId;if(!o)throw new Error(`End of component comment must have a value for the prerendered property: '${e}'`);if(o!==t)throw new Error(`End of component comment prerendered property must match the start comment prerender id: '${t}', '${o}'`)}class $t{constructor(e){this.childNodes=e,this.currentIndex=-1,this.length=e.length}next(){return this.currentIndex++,this.currentIndex{n+=`0x${e<16?"0":""}${e.toString(16)} `})),n.substring(0,n.length-1)}(e)}'`)):"string"==typeof e&&(n=`String data of length ${e.length}`,t&&(n+=`. Content: '${e}'`)),n}function an(e){return e&&"undefined"!=typeof ArrayBuffer&&(e instanceof ArrayBuffer||e.constructor&&"ArrayBuffer"===e.constructor.name)}async function cn(e,t,n,o,r,i){const s={},[a,c]=dn();s[a]=c,e.log(Zt.Trace,`(${t} transport) sending data. ${sn(r,i.logMessageContent)}.`);const l=an(r)?"arraybuffer":"text",h=await n.post(o,{content:r,headers:{...s,...i.headers},responseType:l,timeout:i.timeout,withCredentials:i.withCredentials});e.log(Zt.Trace,`(${t} transport) request complete. Response status: ${h.statusCode}.`)}class ln{constructor(e,t){this._subject=e,this._observer=t}dispose(){const e=this._subject.observers.indexOf(this._observer);e>-1&&this._subject.observers.splice(e,1),0===this._subject.observers.length&&this._subject.cancelCallback&&this._subject.cancelCallback().catch((e=>{}))}}class hn{constructor(e){this._minLevel=e,this.out=console}log(e,t){if(e>=this._minLevel){const n=`[${(new Date).toISOString()}] ${Zt[e]}: ${t}`;switch(e){case Zt.Critical:case Zt.Error:this.out.error(n);break;case Zt.Warning:this.out.warn(n);break;case Zt.Information:this.out.info(n);break;default:this.out.log(n)}}}}function dn(){return["X-SignalR-User-Agent",un("10.0.1","","Browser",void 0)]}function un(e,t,n,o){let r="Microsoft SignalR/";const i=e.split(".");return r+=`${i[0]}.${i[1]}`,r+=` (${e}; `,r+=t&&""!==t?`${t}; `:"Unknown OS; ",r+=`${n}`,r+=o?`; ${o}`:"; Unknown Runtime Version",r+=")",r}function pn(e){return e.stack?e.stack:e.message?e.message:`${e}`}class fn extends Qt{constructor(e){if(super(),this._logger=e,"undefined"==typeof fetch){const e="function"==typeof __webpack_require__?__non_webpack_require__:require;this._jar=new(e("tough-cookie").CookieJar),"undefined"==typeof fetch?this._fetchType=e("node-fetch"):this._fetchType=fetch,this._fetchType=e("fetch-cookie")(this._fetchType,this._jar)}else this._fetchType=fetch.bind(function(){if("undefined"!=typeof globalThis)return globalThis;if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if("undefined"!=typeof global)return global;throw new Error("could not find global")}());if("undefined"==typeof AbortController){const e="function"==typeof __webpack_require__?__non_webpack_require__:require;this._abortControllerType=e("abort-controller")}else this._abortControllerType=AbortController}async send(e){if(e.abortSignal&&e.abortSignal.aborted)throw new qt;if(!e.method)throw new Error("No method defined.");if(!e.url)throw new Error("No url defined.");const t=new this._abortControllerType;let n;e.abortSignal&&(e.abortSignal.onabort=()=>{t.abort(),n=new qt});let o,r=null;if(e.timeout){const o=e.timeout;r=setTimeout((()=>{t.abort(),this._logger.log(Zt.Warning,"Timeout from HTTP request."),n=new zt}),o)}""===e.content&&(e.content=void 0),e.content&&(e.headers=e.headers||{},an(e.content)?e.headers["Content-Type"]="application/octet-stream":e.headers["Content-Type"]="text/plain;charset=UTF-8");try{o=await this._fetchType(e.url,{body:e.content,cache:"no-cache",credentials:!0===e.withCredentials?"include":"same-origin",headers:{"X-Requested-With":"XMLHttpRequest",...e.headers},method:e.method,mode:"cors",redirect:"follow",signal:t.signal})}catch(e){if(n)throw n;throw this._logger.log(Zt.Warning,`Error from HTTP request. ${e}.`),e}finally{r&&clearTimeout(r),e.abortSignal&&(e.abortSignal.onabort=null)}if(!o.ok){const e=await gn(o,"text");throw new Wt(e||o.statusText,o.status)}const i=gn(o,e.responseType),s=await i;return new Yt(o.status,o.statusText,s)}getCookieString(e){return""}}function gn(e,t){let n;switch(t){case"arraybuffer":n=e.arrayBuffer();break;case"text":default:n=e.text();break;case"blob":case"document":case"json":throw new Error(`${t} is not supported.`)}return n}class mn extends Qt{constructor(e){super(),this._logger=e}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new qt):e.method?e.url?new Promise(((t,n)=>{const o=new XMLHttpRequest;o.open(e.method,e.url,!0),o.withCredentials=void 0===e.withCredentials||e.withCredentials,o.setRequestHeader("X-Requested-With","XMLHttpRequest"),""===e.content&&(e.content=void 0),e.content&&(an(e.content)?o.setRequestHeader("Content-Type","application/octet-stream"):o.setRequestHeader("Content-Type","text/plain;charset=UTF-8"));const r=e.headers;r&&Object.keys(r).forEach((e=>{o.setRequestHeader(e,r[e])})),e.responseType&&(o.responseType=e.responseType),e.abortSignal&&(e.abortSignal.onabort=()=>{o.abort(),n(new qt)}),e.timeout&&(o.timeout=e.timeout),o.onload=()=>{e.abortSignal&&(e.abortSignal.onabort=null),o.status>=200&&o.status<300?t(new Yt(o.status,o.statusText,o.response||o.responseText)):n(new Wt(o.response||o.responseText||o.statusText,o.status))},o.onerror=()=>{this._logger.log(Zt.Warning,`Error from HTTP request. ${o.status}: ${o.statusText}.`),n(new Wt(o.statusText,o.status))},o.ontimeout=()=>{this._logger.log(Zt.Warning,"Timeout from HTTP request."),n(new zt)},o.send(e.content)})):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}}class yn extends Qt{constructor(e){if(super(),"undefined"!=typeof fetch)this._httpClient=new fn(e);else{if("undefined"==typeof XMLHttpRequest)throw new Error("No usable HttpClient found.");this._httpClient=new mn(e)}}send(e){return e.abortSignal&&e.abortSignal.aborted?Promise.reject(new qt):e.method?e.url?this._httpClient.send(e):Promise.reject(new Error("No url defined.")):Promise.reject(new Error("No method defined."))}getCookieString(e){return this._httpClient.getCookieString(e)}}class vn{static write(e){return`${e}${vn.RecordSeparator}`}static parse(e){if(e[e.length-1]!==vn.RecordSeparator)throw new Error("Message is incomplete.");const t=e.split(vn.RecordSeparator);return t.pop(),t}}vn.RecordSeparatorCode=30,vn.RecordSeparator=String.fromCharCode(vn.RecordSeparatorCode);class wn{writeHandshakeRequest(e){return vn.write(JSON.stringify(e))}parseHandshakeResponse(e){let t,n;if(an(e)){const o=new Uint8Array(e),r=o.indexOf(vn.RecordSeparatorCode);if(-1===r)throw new Error("Message is incomplete.");const i=r+1;t=String.fromCharCode.apply(null,Array.prototype.slice.call(o.slice(0,i))),n=o.byteLength>i?o.slice(i).buffer:null}else{const o=e,r=o.indexOf(vn.RecordSeparator);if(-1===r)throw new Error("Message is incomplete.");const i=r+1;t=o.substring(0,i),n=o.length>i?o.substring(i):null}const o=vn.parse(t),r=JSON.parse(o[0]);if(r.type)throw new Error("Expected a handshake response from the server.");return[n,r]}}!function(e){e[e.Invocation=1]="Invocation",e[e.StreamItem=2]="StreamItem",e[e.Completion=3]="Completion",e[e.StreamInvocation=4]="StreamInvocation",e[e.CancelInvocation=5]="CancelInvocation",e[e.Ping=6]="Ping",e[e.Close=7]="Close",e[e.Ack=8]="Ack",e[e.Sequence=9]="Sequence"}(en||(en={}));class bn{constructor(){this.observers=[]}next(e){for(const t of this.observers)t.next(e)}error(e){for(const t of this.observers)t.error&&t.error(e)}complete(){for(const e of this.observers)e.complete&&e.complete()}subscribe(e){return this.observers.push(e),new ln(this,e)}}class _n{constructor(e,t,n){this._bufferSize=1e5,this._messages=[],this._totalMessageCount=0,this._waitForSequenceMessage=!1,this._nextReceivingSequenceId=1,this._latestReceivedSequenceId=0,this._bufferedByteCount=0,this._reconnectInProgress=!1,this._protocol=e,this._connection=t,this._bufferSize=n}async _send(e){const t=this._protocol.writeMessage(e);let n=Promise.resolve();if(this._isInvocationMessage(e)){this._totalMessageCount++;let e=()=>{},o=()=>{};an(t)?this._bufferedByteCount+=t.byteLength:this._bufferedByteCount+=t.length,this._bufferedByteCount>=this._bufferSize&&(n=new Promise(((t,n)=>{e=t,o=n}))),this._messages.push(new Sn(t,this._totalMessageCount,e,o))}try{this._reconnectInProgress||await this._connection.send(t)}catch{this._disconnected()}await n}_ack(e){let t=-1;for(let n=0;nthis._nextReceivingSequenceId?this._connection.stop(new Error("Sequence ID greater than amount of messages we've received.")):this._nextReceivingSequenceId=e.sequenceId}_disconnected(){this._reconnectInProgress=!0,this._waitForSequenceMessage=!0}async _resend(){const e=0!==this._messages.length?this._messages[0]._id:this._totalMessageCount+1;await this._connection.send(this._protocol.writeMessage({type:en.Sequence,sequenceId:e}));const t=this._messages;for(const e of t)await this._connection.send(e._message);this._reconnectInProgress=!1}_dispose(e){null!=e||(e=new Error("Unable to reconnect to server."));for(const t of this._messages)t._rejector(e)}_isInvocationMessage(e){switch(e.type){case en.Invocation:case en.StreamItem:case en.Completion:case en.StreamInvocation:case en.CancelInvocation:return!0;case en.Close:case en.Sequence:case en.Ping:case en.Ack:return!1}}_ackTimer(){void 0===this._ackTimerHandle&&(this._ackTimerHandle=setTimeout((async()=>{try{this._reconnectInProgress||await this._connection.send(this._protocol.writeMessage({type:en.Ack,sequenceId:this._latestReceivedSequenceId}))}catch{}clearTimeout(this._ackTimerHandle),this._ackTimerHandle=void 0}),1e3))}}class Sn{constructor(e,t,n,o){this._message=e,this._id=t,this._resolver=n,this._rejector=o}}!function(e){e.Disconnected="Disconnected",e.Connecting="Connecting",e.Connected="Connected",e.Disconnecting="Disconnecting",e.Reconnecting="Reconnecting"}(tn||(tn={}));class Cn{static create(e,t,n,o,r,i,s){return new Cn(e,t,n,o,r,i,s)}constructor(e,t,n,o,r,i,s){this._nextKeepAlive=0,this._freezeEventListener=()=>{this._logger.log(Zt.Warning,"The page is being frozen, this will likely lead to the connection being closed and messages being lost. For more information see the docs at https://learn.microsoft.com/aspnet/core/signalr/javascript-client#bsleep")},on.isRequired(e,"connection"),on.isRequired(t,"logger"),on.isRequired(n,"protocol"),this.serverTimeoutInMilliseconds=null!=r?r:3e4,this.keepAliveIntervalInMilliseconds=null!=i?i:15e3,this._statefulReconnectBufferSize=null!=s?s:1e5,this._logger=t,this._protocol=n,this.connection=e,this._reconnectPolicy=o,this._handshakeProtocol=new wn,this.connection.onreceive=e=>this._processIncomingData(e),this.connection.onclose=e=>this._connectionClosed(e),this._callbacks={},this._methods={},this._closedCallbacks=[],this._reconnectingCallbacks=[],this._reconnectedCallbacks=[],this._invocationId=0,this._receivedHandshakeResponse=!1,this._connectionState=tn.Disconnected,this._connectionStarted=!1,this._cachedPingMessage=this._protocol.writeMessage({type:en.Ping})}get state(){return this._connectionState}get connectionId(){return this.connection&&this.connection.connectionId||null}get baseUrl(){return this.connection.baseUrl||""}set baseUrl(e){if(this._connectionState!==tn.Disconnected&&this._connectionState!==tn.Reconnecting)throw new Error("The HubConnection must be in the Disconnected or Reconnecting state to change the url.");if(!e)throw new Error("The HubConnection url must be a valid url.");this.connection.baseUrl=e}start(){return this._startPromise=this._startWithStateTransitions(),this._startPromise}async _startWithStateTransitions(){if(this._connectionState!==tn.Disconnected)return Promise.reject(new Error("Cannot start a HubConnection that is not in the 'Disconnected' state."));this._connectionState=tn.Connecting,this._logger.log(Zt.Debug,"Starting HubConnection.");try{await this._startInternal(),rn.isBrowser&&window.document.addEventListener("freeze",this._freezeEventListener),this._connectionState=tn.Connected,this._connectionStarted=!0,this._logger.log(Zt.Debug,"HubConnection connected successfully.")}catch(e){return this._connectionState=tn.Disconnected,this._logger.log(Zt.Debug,`HubConnection failed to start successfully because of error '${e}'.`),Promise.reject(e)}}async _startInternal(){this._stopDuringStartError=void 0,this._receivedHandshakeResponse=!1;const e=new Promise(((e,t)=>{this._handshakeResolver=e,this._handshakeRejecter=t}));await this.connection.start(this._protocol.transferFormat);try{let t=this._protocol.version;this.connection.features.reconnect||(t=1);const n={protocol:this._protocol.name,version:t};if(this._logger.log(Zt.Debug,"Sending handshake request."),await this._sendMessage(this._handshakeProtocol.writeHandshakeRequest(n)),this._logger.log(Zt.Information,`Using HubProtocol '${this._protocol.name}'.`),this._cleanupTimeout(),this._resetTimeoutPeriod(),this._resetKeepAliveInterval(),await e,this._stopDuringStartError)throw this._stopDuringStartError;!!this.connection.features.reconnect&&(this._messageBuffer=new _n(this._protocol,this.connection,this._statefulReconnectBufferSize),this.connection.features.disconnected=this._messageBuffer._disconnected.bind(this._messageBuffer),this.connection.features.resend=()=>{if(this._messageBuffer)return this._messageBuffer._resend()}),this.connection.features.inherentKeepAlive||await this._sendMessage(this._cachedPingMessage)}catch(e){throw this._logger.log(Zt.Debug,`Hub handshake failed with error '${e}' during start(). Stopping HubConnection.`),this._cleanupTimeout(),this._cleanupPingTimer(),await this.connection.stop(e),e}}async stop(){const e=this._startPromise;this.connection.features.reconnect=!1,this._stopPromise=this._stopInternal(),await this._stopPromise;try{await e}catch(e){}}_stopInternal(e){if(this._connectionState===tn.Disconnected)return this._logger.log(Zt.Debug,`Call to HubConnection.stop(${e}) ignored because it is already in the disconnected state.`),Promise.resolve();if(this._connectionState===tn.Disconnecting)return this._logger.log(Zt.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise;const t=this._connectionState;return this._connectionState=tn.Disconnecting,this._logger.log(Zt.Debug,"Stopping HubConnection."),this._reconnectDelayHandle?(this._logger.log(Zt.Debug,"Connection stopped during reconnect delay. Done reconnecting."),clearTimeout(this._reconnectDelayHandle),this._reconnectDelayHandle=void 0,this._completeClose(),Promise.resolve()):(t===tn.Connected&&this._sendCloseMessage(),this._cleanupTimeout(),this._cleanupPingTimer(),this._stopDuringStartError=e||new qt("The connection was stopped before the hub handshake could complete."),this.connection.stop(e))}async _sendCloseMessage(){try{await this._sendWithProtocol(this._createCloseMessage())}catch{}}stream(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._createStreamInvocation(e,t,o);let i;const s=new bn;return s.cancelCallback=()=>{const e=this._createCancelInvocation(r.invocationId);return delete this._callbacks[r.invocationId],i.then((()=>this._sendWithProtocol(e)))},this._callbacks[r.invocationId]=(e,t)=>{t?s.error(t):e&&(e.type===en.Completion?e.error?s.error(new Error(e.error)):s.complete():s.next(e.item))},i=this._sendWithProtocol(r).catch((e=>{s.error(e),delete this._callbacks[r.invocationId]})),this._launchStreams(n,i),s}_sendMessage(e){return this._resetKeepAliveInterval(),this.connection.send(e)}_sendWithProtocol(e){return this._messageBuffer?this._messageBuffer._send(e):this._sendMessage(this._protocol.writeMessage(e))}send(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._sendWithProtocol(this._createInvocation(e,t,!0,o));return this._launchStreams(n,r),r}invoke(e,...t){const[n,o]=this._replaceStreamingParams(t),r=this._createInvocation(e,t,!1,o);return new Promise(((e,t)=>{this._callbacks[r.invocationId]=(n,o)=>{o?t(o):n&&(n.type===en.Completion?n.error?t(new Error(n.error)):e(n.result):t(new Error(`Unexpected message type: ${n.type}`)))};const o=this._sendWithProtocol(r).catch((e=>{t(e),delete this._callbacks[r.invocationId]}));this._launchStreams(n,o)}))}on(e,t){e&&t&&(e=e.toLowerCase(),this._methods[e]||(this._methods[e]=[]),-1===this._methods[e].indexOf(t)&&this._methods[e].push(t))}off(e,t){if(!e)return;e=e.toLowerCase();const n=this._methods[e];if(n)if(t){const o=n.indexOf(t);-1!==o&&(n.splice(o,1),0===n.length&&delete this._methods[e])}else delete this._methods[e]}onclose(e){e&&this._closedCallbacks.push(e)}onreconnecting(e){e&&this._reconnectingCallbacks.push(e)}onreconnected(e){e&&this._reconnectedCallbacks.push(e)}_processIncomingData(e){if(this._cleanupTimeout(),this._receivedHandshakeResponse||(e=this._processHandshakeResponse(e),this._receivedHandshakeResponse=!0),e){const t=this._protocol.parseMessages(e,this._logger);for(const e of t)if(!this._messageBuffer||this._messageBuffer._shouldProcessMessage(e))switch(e.type){case en.Invocation:this._invokeClientMethod(e).catch((e=>{this._logger.log(Zt.Error,`Invoke client method threw error: ${pn(e)}`)}));break;case en.StreamItem:case en.Completion:{const t=this._callbacks[e.invocationId];if(t){e.type===en.Completion&&delete this._callbacks[e.invocationId];try{t(e)}catch(e){this._logger.log(Zt.Error,`Stream callback threw error: ${pn(e)}`)}}break}case en.Ping:break;case en.Close:{this._logger.log(Zt.Information,"Close message received from server.");const t=e.error?new Error("Server returned an error on close: "+e.error):void 0;!0===e.allowReconnect?this.connection.stop(t):this._stopPromise=this._stopInternal(t);break}case en.Ack:this._messageBuffer&&this._messageBuffer._ack(e);break;case en.Sequence:this._messageBuffer&&this._messageBuffer._resetSequence(e);break;default:this._logger.log(Zt.Warning,`Invalid message type: ${e.type}.`)}}this._resetTimeoutPeriod()}_processHandshakeResponse(e){let t,n;try{[n,t]=this._handshakeProtocol.parseHandshakeResponse(e)}catch(e){const t="Error parsing handshake response: "+e;this._logger.log(Zt.Error,t);const n=new Error(t);throw this._handshakeRejecter(n),n}if(t.error){const e="Server returned handshake error: "+t.error;this._logger.log(Zt.Error,e);const n=new Error(e);throw this._handshakeRejecter(n),n}return this._logger.log(Zt.Debug,"Server handshake complete."),this._handshakeResolver(),n}_resetKeepAliveInterval(){this.connection.features.inherentKeepAlive||(this._nextKeepAlive=(new Date).getTime()+this.keepAliveIntervalInMilliseconds,this._cleanupPingTimer())}_resetTimeoutPeriod(){if(!this.connection.features||!this.connection.features.inherentKeepAlive){this._timeoutHandle=setTimeout((()=>this.serverTimeout()),this.serverTimeoutInMilliseconds);let e=this._nextKeepAlive-(new Date).getTime();if(e<0)return void(this._connectionState===tn.Connected&&this._trySendPingMessage());void 0===this._pingServerHandle&&(e<0&&(e=0),this._pingServerHandle=setTimeout((async()=>{this._connectionState===tn.Connected&&await this._trySendPingMessage()}),e))}}serverTimeout(){this.connection.stop(new Error("Server timeout elapsed without receiving a message from the server."))}async _invokeClientMethod(e){const t=e.target.toLowerCase(),n=this._methods[t];if(!n)return this._logger.log(Zt.Warning,`No client method with the name '${t}' found.`),void(e.invocationId&&(this._logger.log(Zt.Warning,`No result given for '${t}' method and invocation ID '${e.invocationId}'.`),await this._sendWithProtocol(this._createCompletionMessage(e.invocationId,"Client didn't provide a result.",null))));const o=n.slice(),r=!!e.invocationId;let i,s,a;for(const n of o)try{const o=i;i=await n.apply(this,e.arguments),r&&i&&o&&(this._logger.log(Zt.Error,`Multiple results provided for '${t}'. Sending error to server.`),a=this._createCompletionMessage(e.invocationId,"Client provided multiple results.",null)),s=void 0}catch(e){s=e,this._logger.log(Zt.Error,`A callback for the method '${t}' threw error '${e}'.`)}a?await this._sendWithProtocol(a):r?(s?a=this._createCompletionMessage(e.invocationId,`${s}`,null):void 0!==i?a=this._createCompletionMessage(e.invocationId,null,i):(this._logger.log(Zt.Warning,`No result given for '${t}' method and invocation ID '${e.invocationId}'.`),a=this._createCompletionMessage(e.invocationId,"Client didn't provide a result.",null)),await this._sendWithProtocol(a)):i&&this._logger.log(Zt.Error,`Result given for '${t}' method but server is not expecting a result.`)}_connectionClosed(e){this._logger.log(Zt.Debug,`HubConnection.connectionClosed(${e}) called while in state ${this._connectionState}.`),this._stopDuringStartError=this._stopDuringStartError||e||new qt("The underlying connection was closed before the hub handshake could complete."),this._handshakeResolver&&this._handshakeResolver(),this._cancelCallbacksWithError(e||new Error("Invocation canceled due to the underlying connection being closed.")),this._cleanupTimeout(),this._cleanupPingTimer(),this._connectionState===tn.Disconnecting?this._completeClose(e):this._connectionState===tn.Connected&&this._reconnectPolicy?this._reconnect(e):this._connectionState===tn.Connected&&this._completeClose(e)}_completeClose(e){if(this._connectionStarted){this._connectionState=tn.Disconnected,this._connectionStarted=!1,this._messageBuffer&&(this._messageBuffer._dispose(null!=e?e:new Error("Connection closed.")),this._messageBuffer=void 0),rn.isBrowser&&window.document.removeEventListener("freeze",this._freezeEventListener);try{this._closedCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(Zt.Error,`An onclose callback called with error '${e}' threw error '${t}'.`)}}}async _reconnect(e){const t=Date.now();let n=0,o=void 0!==e?e:new Error("Attempting to reconnect due to a unknown error."),r=this._getNextRetryDelay(n,0,o);if(null===r)return this._logger.log(Zt.Debug,"Connection not reconnecting because the IRetryPolicy returned null on the first reconnect attempt."),void this._completeClose(e);if(this._connectionState=tn.Reconnecting,e?this._logger.log(Zt.Information,`Connection reconnecting because of error '${e}'.`):this._logger.log(Zt.Information,"Connection reconnecting."),0!==this._reconnectingCallbacks.length){try{this._reconnectingCallbacks.forEach((t=>t.apply(this,[e])))}catch(t){this._logger.log(Zt.Error,`An onreconnecting callback called with error '${e}' threw error '${t}'.`)}if(this._connectionState!==tn.Reconnecting)return void this._logger.log(Zt.Debug,"Connection left the reconnecting state in onreconnecting callback. Done reconnecting.")}for(;null!==r;){if(this._logger.log(Zt.Information,`Reconnect attempt number ${n+1} will start in ${r} ms.`),await new Promise((e=>{this._reconnectDelayHandle=setTimeout(e,r)})),this._reconnectDelayHandle=void 0,this._connectionState!==tn.Reconnecting)return void this._logger.log(Zt.Debug,"Connection left the reconnecting state during reconnect delay. Done reconnecting.");try{if(await this._startInternal(),this._connectionState=tn.Connected,this._logger.log(Zt.Information,"HubConnection reconnected successfully."),0!==this._reconnectedCallbacks.length)try{this._reconnectedCallbacks.forEach((e=>e.apply(this,[this.connection.connectionId])))}catch(e){this._logger.log(Zt.Error,`An onreconnected callback called with connectionId '${this.connection.connectionId}; threw error '${e}'.`)}return}catch(e){if(this._logger.log(Zt.Information,`Reconnect attempt failed because of error '${e}'.`),this._connectionState!==tn.Reconnecting)return this._logger.log(Zt.Debug,`Connection moved to the '${this._connectionState}' from the reconnecting state during reconnect attempt. Done reconnecting.`),void(this._connectionState===tn.Disconnecting&&this._completeClose());n++,o=e instanceof Error?e:new Error(e.toString()),r=this._getNextRetryDelay(n,Date.now()-t,o)}}this._logger.log(Zt.Information,`Reconnect retries have been exhausted after ${Date.now()-t} ms and ${n} failed attempts. Connection disconnecting.`),this._completeClose()}_getNextRetryDelay(e,t,n){try{return this._reconnectPolicy.nextRetryDelayInMilliseconds({elapsedMilliseconds:t,previousRetryCount:e,retryReason:n})}catch(n){return this._logger.log(Zt.Error,`IRetryPolicy.nextRetryDelayInMilliseconds(${e}, ${t}) threw error '${n}'.`),null}}_cancelCallbacksWithError(e){const t=this._callbacks;this._callbacks={},Object.keys(t).forEach((n=>{const o=t[n];try{o(null,e)}catch(t){this._logger.log(Zt.Error,`Stream 'error' callback called with '${e}' threw error: ${pn(t)}`)}}))}_cleanupPingTimer(){this._pingServerHandle&&(clearTimeout(this._pingServerHandle),this._pingServerHandle=void 0)}_cleanupTimeout(){this._timeoutHandle&&clearTimeout(this._timeoutHandle)}_createInvocation(e,t,n,o){if(n)return 0!==o.length?{target:e,arguments:t,streamIds:o,type:en.Invocation}:{target:e,arguments:t,type:en.Invocation};{const n=this._invocationId;return this._invocationId++,0!==o.length?{target:e,arguments:t,invocationId:n.toString(),streamIds:o,type:en.Invocation}:{target:e,arguments:t,invocationId:n.toString(),type:en.Invocation}}}_launchStreams(e,t){if(0!==e.length){t||(t=Promise.resolve());for(const n in e)e[n].subscribe({complete:()=>{t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n))))},error:e=>{let o;o=e instanceof Error?e.message:e&&e.toString?e.toString():"Unknown error",t=t.then((()=>this._sendWithProtocol(this._createCompletionMessage(n,o))))},next:e=>{t=t.then((()=>this._sendWithProtocol(this._createStreamItemMessage(n,e))))}})}}_replaceStreamingParams(e){const t=[],n=[];for(let o=0;o0)&&(t=!1,this._accessToken=await this._accessTokenFactory()),this._setAuthorizationHeader(e);const n=await this._innerClient.send(e);return t&&401===n.statusCode&&this._accessTokenFactory?(this._accessToken=await this._accessTokenFactory(),this._setAuthorizationHeader(e),await this._innerClient.send(e)):n}_setAuthorizationHeader(e){e.headers||(e.headers={}),this._accessToken?e.headers[kn.Authorization]=`Bearer ${this._accessToken}`:this._accessTokenFactory&&e.headers[kn.Authorization]&&delete e.headers[kn.Authorization]}getCookieString(e){return this._innerClient.getCookieString(e)}}var Tn,An;!function(e){e[e.None=0]="None",e[e.WebSockets=1]="WebSockets",e[e.ServerSentEvents=2]="ServerSentEvents",e[e.LongPolling=4]="LongPolling"}(Tn||(Tn={})),function(e){e[e.Text=1]="Text",e[e.Binary=2]="Binary"}(An||(An={}));let Dn=class{constructor(){this._isAborted=!1,this.onabort=null}abort(){this._isAborted||(this._isAborted=!0,this.onabort&&this.onabort())}get signal(){return this}get aborted(){return this._isAborted}};class Nn{get pollAborted(){return this._pollAbort.aborted}constructor(e,t,n){this._httpClient=e,this._logger=t,this._pollAbort=new Dn,this._options=n,this._running=!1,this.onreceive=null,this.onclose=null}async connect(e,t){if(on.isRequired(e,"url"),on.isRequired(t,"transferFormat"),on.isIn(t,An,"transferFormat"),this._url=e,this._logger.log(Zt.Trace,"(LongPolling transport) Connecting."),t===An.Binary&&"undefined"!=typeof XMLHttpRequest&&"string"!=typeof(new XMLHttpRequest).responseType)throw new Error("Binary protocols over XmlHttpRequest not implementing advanced features are not supported.");const[n,o]=dn(),r={[n]:o,...this._options.headers},i={abortSignal:this._pollAbort.signal,headers:r,timeout:1e5,withCredentials:this._options.withCredentials};t===An.Binary&&(i.responseType="arraybuffer");const s=`${e}&_=${Date.now()}`;this._logger.log(Zt.Trace,`(LongPolling transport) polling: ${s}.`);const a=await this._httpClient.get(s,i);200!==a.statusCode?(this._logger.log(Zt.Error,`(LongPolling transport) Unexpected response code: ${a.statusCode}.`),this._closeError=new Wt(a.statusText||"",a.statusCode),this._running=!1):this._running=!0,this._receiving=this._poll(this._url,i)}async _poll(e,t){try{for(;this._running;)try{const n=`${e}&_=${Date.now()}`;this._logger.log(Zt.Trace,`(LongPolling transport) polling: ${n}.`);const o=await this._httpClient.get(n,t);204===o.statusCode?(this._logger.log(Zt.Information,"(LongPolling transport) Poll terminated by server."),this._running=!1):200!==o.statusCode?(this._logger.log(Zt.Error,`(LongPolling transport) Unexpected response code: ${o.statusCode}.`),this._closeError=new Wt(o.statusText||"",o.statusCode),this._running=!1):o.content?(this._logger.log(Zt.Trace,`(LongPolling transport) data received. ${sn(o.content,this._options.logMessageContent)}.`),this.onreceive&&this.onreceive(o.content)):this._logger.log(Zt.Trace,"(LongPolling transport) Poll timed out, reissuing.")}catch(e){this._running?e instanceof zt?this._logger.log(Zt.Trace,"(LongPolling transport) Poll timed out, reissuing."):(this._closeError=e,this._running=!1):this._logger.log(Zt.Trace,`(LongPolling transport) Poll errored after shutdown: ${e.message}`)}}finally{this._logger.log(Zt.Trace,"(LongPolling transport) Polling complete."),this.pollAborted||this._raiseOnClose()}}async send(e){return this._running?cn(this._logger,"LongPolling",this._httpClient,this._url,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}async stop(){this._logger.log(Zt.Trace,"(LongPolling transport) Stopping polling."),this._running=!1,this._pollAbort.abort();try{await this._receiving,this._logger.log(Zt.Trace,`(LongPolling transport) sending DELETE request to ${this._url}.`);const e={},[t,n]=dn();e[t]=n;const o={headers:{...e,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials};let r;try{await this._httpClient.delete(this._url,o)}catch(e){r=e}r?r instanceof Wt&&(404===r.statusCode?this._logger.log(Zt.Trace,"(LongPolling transport) A 404 response was returned from sending a DELETE request."):this._logger.log(Zt.Trace,`(LongPolling transport) Error sending a DELETE request: ${r}`)):this._logger.log(Zt.Trace,"(LongPolling transport) DELETE request accepted.")}finally{this._logger.log(Zt.Trace,"(LongPolling transport) Stop finished."),this._raiseOnClose()}}_raiseOnClose(){if(this.onclose){let e="(LongPolling transport) Firing onclose event.";this._closeError&&(e+=" Error: "+this._closeError),this._logger.log(Zt.Trace,e),this.onclose(this._closeError)}}}class xn{constructor(e,t,n,o){this._httpClient=e,this._accessToken=t,this._logger=n,this._options=o,this.onreceive=null,this.onclose=null}async connect(e,t){return on.isRequired(e,"url"),on.isRequired(t,"transferFormat"),on.isIn(t,An,"transferFormat"),this._logger.log(Zt.Trace,"(SSE transport) Connecting."),this._url=e,this._accessToken&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(this._accessToken)}`),new Promise(((n,o)=>{let r,i=!1;if(t===An.Text){if(rn.isBrowser||rn.isWebWorker)r=new this._options.EventSource(e,{withCredentials:this._options.withCredentials});else{const t=this._httpClient.getCookieString(e),n={};n.Cookie=t;const[o,i]=dn();n[o]=i,r=new this._options.EventSource(e,{withCredentials:this._options.withCredentials,headers:{...n,...this._options.headers}})}try{r.onmessage=e=>{if(this.onreceive)try{this._logger.log(Zt.Trace,`(SSE transport) data received. ${sn(e.data,this._options.logMessageContent)}.`),this.onreceive(e.data)}catch(e){return void this._close(e)}},r.onerror=e=>{i?this._close():o(new Error("EventSource failed to connect. The connection could not be found on the server, either the connection ID is not present on the server, or a proxy is refusing/buffering the connection. If you have multiple servers check that sticky sessions are enabled."))},r.onopen=()=>{this._logger.log(Zt.Information,`SSE connected to ${this._url}`),this._eventSource=r,i=!0,n()}}catch(e){return void o(e)}}else o(new Error("The Server-Sent Events transport only supports the 'Text' transfer format"))}))}async send(e){return this._eventSource?cn(this._logger,"SSE",this._httpClient,this._url,e,this._options):Promise.reject(new Error("Cannot send until the transport is connected"))}stop(){return this._close(),Promise.resolve()}_close(e){this._eventSource&&(this._eventSource.close(),this._eventSource=void 0,this.onclose&&this.onclose(e))}}class Pn{constructor(e,t,n,o,r,i){this._logger=n,this._accessTokenFactory=t,this._logMessageContent=o,this._webSocketConstructor=r,this._httpClient=e,this.onreceive=null,this.onclose=null,this._headers=i}async connect(e,t){let n;return on.isRequired(e,"url"),on.isRequired(t,"transferFormat"),on.isIn(t,An,"transferFormat"),this._logger.log(Zt.Trace,"(WebSockets transport) Connecting."),this._accessTokenFactory&&(n=await this._accessTokenFactory()),new Promise(((o,r)=>{let i;e=e.replace(/^http/,"ws");const s=this._httpClient.getCookieString(e);let a=!1;if(rn.isReactNative){const t={},[o,r]=dn();t[o]=r,n&&(t[kn.Authorization]=`Bearer ${n}`),s&&(t[kn.Cookie]=s),i=new this._webSocketConstructor(e,void 0,{headers:{...t,...this._headers}})}else n&&(e+=(e.indexOf("?")<0?"?":"&")+`access_token=${encodeURIComponent(n)}`);i||(i=new this._webSocketConstructor(e)),t===An.Binary&&(i.binaryType="arraybuffer"),i.onopen=t=>{this._logger.log(Zt.Information,`WebSocket connected to ${e}.`),this._webSocket=i,a=!0,o()},i.onerror=e=>{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"There was an error with the transport",this._logger.log(Zt.Information,`(WebSockets transport) ${t}.`)},i.onmessage=e=>{if(this._logger.log(Zt.Trace,`(WebSockets transport) data received. ${sn(e.data,this._logMessageContent)}.`),this.onreceive)try{this.onreceive(e.data)}catch(e){return void this._close(e)}},i.onclose=e=>{if(a)this._close(e);else{let t=null;t="undefined"!=typeof ErrorEvent&&e instanceof ErrorEvent?e.error:"WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled.",r(new Error(t))}}}))}send(e){return this._webSocket&&this._webSocket.readyState===this._webSocketConstructor.OPEN?(this._logger.log(Zt.Trace,`(WebSockets transport) sending data. ${sn(e,this._logMessageContent)}.`),this._webSocket.send(e),Promise.resolve()):Promise.reject("WebSocket is not in the OPEN state")}stop(){return this._webSocket&&this._close(void 0),Promise.resolve()}_close(e){this._webSocket&&(this._webSocket.onclose=()=>{},this._webSocket.onmessage=()=>{},this._webSocket.onerror=()=>{},this._webSocket.close(),this._webSocket=void 0),this._logger.log(Zt.Trace,"(WebSockets transport) socket closed."),this.onclose&&(!this._isCloseEvent(e)||!1!==e.wasClean&&1e3===e.code?e instanceof Error?this.onclose(e):this.onclose():this.onclose(new Error(`WebSocket closed with status code: ${e.code} (${e.reason||"no reason given"}).`)))}_isCloseEvent(e){return e&&"boolean"==typeof e.wasClean&&"number"==typeof e.code}}class Mn{constructor(e,t={}){if(this._stopPromiseResolver=()=>{},this.features={},this._negotiateVersion=1,on.isRequired(e,"url"),this._logger=function(e){return void 0===e?new hn(Zt.Information):null===e?nn.instance:void 0!==e.log?e:new hn(e)}(t.logger),this.baseUrl=this._resolveUrl(e),(t=t||{}).logMessageContent=void 0!==t.logMessageContent&&t.logMessageContent,"boolean"!=typeof t.withCredentials&&void 0!==t.withCredentials)throw new Error("withCredentials option was not a 'boolean' or 'undefined' value");t.withCredentials=void 0===t.withCredentials||t.withCredentials,t.timeout=void 0===t.timeout?1e5:t.timeout,"undefined"==typeof WebSocket||t.WebSocket||(t.WebSocket=WebSocket),"undefined"==typeof EventSource||t.EventSource||(t.EventSource=EventSource),this._httpClient=new Rn(t.httpClient||new yn(this._logger),t.accessTokenFactory),this._connectionState="Disconnected",this._connectionStarted=!1,this._options=t,this.onreceive=null,this.onclose=null}async start(e){if(e=e||An.Binary,on.isIn(e,An,"transferFormat"),this._logger.log(Zt.Debug,`Starting connection with transfer format '${An[e]}'.`),"Disconnected"!==this._connectionState)return Promise.reject(new Error("Cannot start an HttpConnection that is not in the 'Disconnected' state."));if(this._connectionState="Connecting",this._startInternalPromise=this._startInternal(e),await this._startInternalPromise,"Disconnecting"===this._connectionState){const e="Failed to start the HttpConnection before stop() was called.";return this._logger.log(Zt.Error,e),await this._stopPromise,Promise.reject(new qt(e))}if("Connected"!==this._connectionState){const e="HttpConnection.startInternal completed gracefully but didn't enter the connection into the connected state!";return this._logger.log(Zt.Error,e),Promise.reject(new qt(e))}this._connectionStarted=!0}send(e){return"Connected"!==this._connectionState?Promise.reject(new Error("Cannot send data if the connection is not in the 'Connected' State.")):(this._sendQueue||(this._sendQueue=new Ln(this.transport)),this._sendQueue.send(e))}async stop(e){return"Disconnected"===this._connectionState?(this._logger.log(Zt.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnected state.`),Promise.resolve()):"Disconnecting"===this._connectionState?(this._logger.log(Zt.Debug,`Call to HttpConnection.stop(${e}) ignored because the connection is already in the disconnecting state.`),this._stopPromise):(this._connectionState="Disconnecting",this._stopPromise=new Promise((e=>{this._stopPromiseResolver=e})),await this._stopInternal(e),void await this._stopPromise)}async _stopInternal(e){this._stopError=e;try{await this._startInternalPromise}catch(e){}if(this.transport){try{await this.transport.stop()}catch(e){this._logger.log(Zt.Error,`HttpConnection.transport.stop() threw error '${e}'.`),this._stopConnection()}this.transport=void 0}else this._logger.log(Zt.Debug,"HttpConnection.transport is undefined in HttpConnection.stop() because start() failed.")}async _startInternal(e){let t=this.baseUrl;this._accessTokenFactory=this._options.accessTokenFactory,this._httpClient._accessTokenFactory=this._accessTokenFactory;try{if(this._options.skipNegotiation){if(this._options.transport!==Tn.WebSockets)throw new Error("Negotiation can only be skipped when using the WebSocket transport directly.");this.transport=this._constructTransport(Tn.WebSockets),await this._startTransport(t,e)}else{let n=null,o=0;do{if(n=await this._getNegotiationResponse(t),"Disconnecting"===this._connectionState||"Disconnected"===this._connectionState)throw new qt("The connection was stopped during negotiation.");if(n.error)throw new Error(n.error);if(n.ProtocolVersion)throw new Error("Detected a connection attempt to an ASP.NET SignalR Server. This client only supports connecting to an ASP.NET Core SignalR Server. See https://aka.ms/signalr-core-differences for details.");if(n.url&&(t=n.url),n.accessToken){const e=n.accessToken;this._accessTokenFactory=()=>e,this._httpClient._accessToken=e,this._httpClient._accessTokenFactory=void 0}o++}while(n.url&&o<100);if(100===o&&n.url)throw new Error("Negotiate redirection limit exceeded.");await this._createTransport(t,this._options.transport,n,e)}this.transport instanceof Nn&&(this.features.inherentKeepAlive=!0),"Connecting"===this._connectionState&&(this._logger.log(Zt.Debug,"The HttpConnection connected successfully."),this._connectionState="Connected")}catch(e){return this._logger.log(Zt.Error,"Failed to start the connection: "+e),this._connectionState="Disconnected",this.transport=void 0,this._stopPromiseResolver(),Promise.reject(e)}}async _getNegotiationResponse(e){const t={},[n,o]=dn();t[n]=o;const r=this._resolveNegotiateUrl(e);this._logger.log(Zt.Debug,`Sending negotiation request: ${r}.`);try{const e=await this._httpClient.post(r,{content:"",headers:{...t,...this._options.headers},timeout:this._options.timeout,withCredentials:this._options.withCredentials});if(200!==e.statusCode)return Promise.reject(new Error(`Unexpected status code returned from negotiate '${e.statusCode}'`));const n=JSON.parse(e.content);return(!n.negotiateVersion||n.negotiateVersion<1)&&(n.connectionToken=n.connectionId),n.useStatefulReconnect&&!0!==this._options._useStatefulReconnect?Promise.reject(new Xt("Client didn't negotiate Stateful Reconnect but the server did.")):n}catch(e){let t="Failed to complete negotiation with the server: "+e;return e instanceof Wt&&404===e.statusCode&&(t+=" Either this is not a SignalR endpoint or there is a proxy blocking the connection."),this._logger.log(Zt.Error,t),Promise.reject(new Xt(t))}}_createConnectUrl(e,t){return t?e+(-1===e.indexOf("?")?"?":"&")+`id=${t}`:e}async _createTransport(e,t,n,o){let r=this._createConnectUrl(e,n.connectionToken);if(this._isITransport(t))return this._logger.log(Zt.Debug,"Connection was provided an instance of ITransport, using that directly."),this.transport=t,await this._startTransport(r,o),void(this.connectionId=n.connectionId);const i=[],s=n.availableTransports||[];let a=n;for(const n of s){const s=this._resolveTransportOrError(n,t,o,!0===(null==a?void 0:a.useStatefulReconnect));if(s instanceof Error)i.push(`${n.transport} failed:`),i.push(s);else if(this._isITransport(s)){if(this.transport=s,!a){try{a=await this._getNegotiationResponse(e)}catch(e){return Promise.reject(e)}r=this._createConnectUrl(e,a.connectionToken)}try{return await this._startTransport(r,o),void(this.connectionId=a.connectionId)}catch(e){if(this._logger.log(Zt.Error,`Failed to start the transport '${n.transport}': ${e}`),a=void 0,i.push(new Kt(`${n.transport} failed: ${e}`,Tn[n.transport])),"Connecting"!==this._connectionState){const e="Failed to select transport before stop() was called.";return this._logger.log(Zt.Debug,e),Promise.reject(new qt(e))}}}}return i.length>0?Promise.reject(new Gt(`Unable to connect to the server with any of the available transports. ${i.join(" ")}`,i)):Promise.reject(new Error("None of the transports supported by the client are supported by the server."))}_constructTransport(e){switch(e){case Tn.WebSockets:if(!this._options.WebSocket)throw new Error("'WebSocket' is not supported in your environment.");return new Pn(this._httpClient,this._accessTokenFactory,this._logger,this._options.logMessageContent,this._options.WebSocket,this._options.headers||{});case Tn.ServerSentEvents:if(!this._options.EventSource)throw new Error("'EventSource' is not supported in your environment.");return new xn(this._httpClient,this._httpClient._accessToken,this._logger,this._options);case Tn.LongPolling:return new Nn(this._httpClient,this._logger,this._options);default:throw new Error(`Unknown transport: ${e}.`)}}_startTransport(e,t){return this.transport.onreceive=this.onreceive,this.features.reconnect?this.transport.onclose=async n=>{let o=!1;if(this.features.reconnect){try{this.features.disconnected(),await this.transport.connect(e,t),await this.features.resend()}catch{o=!0}o&&this._stopConnection(n)}else this._stopConnection(n)}:this.transport.onclose=e=>this._stopConnection(e),this.transport.connect(e,t)}_resolveTransportOrError(e,t,n,o){const r=Tn[e.transport];if(null==r)return this._logger.log(Zt.Debug,`Skipping transport '${e.transport}' because it is not supported by this client.`),new Error(`Skipping transport '${e.transport}' because it is not supported by this client.`);if(!function(e,t){return!e||!!(t&e)}(t,r))return this._logger.log(Zt.Debug,`Skipping transport '${Tn[r]}' because it was disabled by the client.`),new Vt(`'${Tn[r]}' is disabled by the client.`,r);if(!(e.transferFormats.map((e=>An[e])).indexOf(n)>=0))return this._logger.log(Zt.Debug,`Skipping transport '${Tn[r]}' because it does not support the requested transfer format '${An[n]}'.`),new Error(`'${Tn[r]}' does not support ${An[n]}.`);if(r===Tn.WebSockets&&!this._options.WebSocket||r===Tn.ServerSentEvents&&!this._options.EventSource)return this._logger.log(Zt.Debug,`Skipping transport '${Tn[r]}' because it is not supported in your environment.'`),new Jt(`'${Tn[r]}' is not supported in your environment.`,r);this._logger.log(Zt.Debug,`Selecting transport '${Tn[r]}'.`);try{return this.features.reconnect=r===Tn.WebSockets?o:void 0,this._constructTransport(r)}catch(e){return e}}_isITransport(e){return e&&"object"==typeof e&&"connect"in e}_stopConnection(e){if(this._logger.log(Zt.Debug,`HttpConnection.stopConnection(${e}) called while in state ${this._connectionState}.`),this.transport=void 0,e=this._stopError||e,this._stopError=void 0,"Disconnected"!==this._connectionState){if("Connecting"===this._connectionState)throw this._logger.log(Zt.Warning,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is still in the connecting state.`),new Error(`HttpConnection.stopConnection(${e}) was called while the connection is still in the connecting state.`);if("Disconnecting"===this._connectionState&&this._stopPromiseResolver(),e?this._logger.log(Zt.Error,`Connection disconnected with error '${e}'.`):this._logger.log(Zt.Information,"Connection disconnected."),this._sendQueue&&(this._sendQueue.stop().catch((e=>{this._logger.log(Zt.Error,`TransportSendQueue.stop() threw error '${e}'.`)})),this._sendQueue=void 0),this.connectionId=void 0,this._connectionState="Disconnected",this._connectionStarted){this._connectionStarted=!1;try{this.onclose&&this.onclose(e)}catch(t){this._logger.log(Zt.Error,`HttpConnection.onclose(${e}) threw error '${t}'.`)}}}else this._logger.log(Zt.Debug,`Call to HttpConnection.stopConnection(${e}) was ignored because the connection is already in the disconnected state.`)}_resolveUrl(e){if(0===e.lastIndexOf("https://",0)||0===e.lastIndexOf("http://",0))return e;if(!rn.isBrowser)throw new Error(`Cannot resolve '${e}'.`);const t=window.document.createElement("a");return t.href=e,this._logger.log(Zt.Information,`Normalizing '${e}' to '${t.href}'.`),t.href}_resolveNegotiateUrl(e){const t=new URL(e);t.pathname.endsWith("/")?t.pathname+="negotiate":t.pathname+="/negotiate";const n=new URLSearchParams(t.searchParams);return n.has("negotiateVersion")||n.append("negotiateVersion",this._negotiateVersion.toString()),n.has("useStatefulReconnect")?"true"===n.get("useStatefulReconnect")&&(this._options._useStatefulReconnect=!0):!0===this._options._useStatefulReconnect&&n.append("useStatefulReconnect","true"),t.search=n.toString(),t.toString()}}class Ln{constructor(e){this._transport=e,this._buffer=[],this._executing=!0,this._sendBufferedData=new Un,this._transportResult=new Un,this._sendLoopPromise=this._sendLoop()}send(e){return this._bufferData(e),this._transportResult||(this._transportResult=new Un),this._transportResult.promise}stop(){return this._executing=!1,this._sendBufferedData.resolve(),this._sendLoopPromise}_bufferData(e){if(this._buffer.length&&typeof this._buffer[0]!=typeof e)throw new Error(`Expected data to be of type ${typeof this._buffer} but was of type ${typeof e}`);this._buffer.push(e),this._sendBufferedData.resolve()}async _sendLoop(){for(;;){if(await this._sendBufferedData.promise,!this._executing){this._transportResult&&this._transportResult.reject("Connection stopped.");break}this._sendBufferedData=new Un;const e=this._transportResult;this._transportResult=void 0;const t="string"==typeof this._buffer[0]?this._buffer.join(""):Ln._concatBuffers(this._buffer);this._buffer.length=0;try{await this._transport.send(t),e.resolve()}catch(t){e.reject(t)}}}static _concatBuffers(e){const t=e.map((e=>e.byteLength)).reduce(((e,t)=>e+t)),n=new Uint8Array(t);let o=0;for(const t of e)n.set(new Uint8Array(t),o),o+=t.byteLength;return n.buffer}}class Un{constructor(){this.promise=new Promise(((e,t)=>[this._resolver,this._rejecter]=[e,t]))}resolve(){this._resolver()}reject(e){this._rejecter(e)}}class Bn{constructor(){this.name="json",this.version=2,this.transferFormat=An.Text}parseMessages(e,t){if("string"!=typeof e)throw new Error("Invalid input for JSON hub protocol. Expected a string.");if(!e)return[];null===t&&(t=nn.instance);const n=vn.parse(e),o=[];for(const e of n){const n=JSON.parse(e);if("number"!=typeof n.type)throw new Error("Invalid payload.");switch(n.type){case en.Invocation:this._isInvocationMessage(n);break;case en.StreamItem:this._isStreamItemMessage(n);break;case en.Completion:this._isCompletionMessage(n);break;case en.Ping:case en.Close:break;case en.Ack:this._isAckMessage(n);break;case en.Sequence:this._isSequenceMessage(n);break;default:t.log(Zt.Information,"Unknown message type '"+n.type+"' ignored.");continue}o.push(n)}return o}writeMessage(e){return vn.write(JSON.stringify(e))}_isInvocationMessage(e){this._assertNotEmptyString(e.target,"Invalid payload for Invocation message."),void 0!==e.invocationId&&this._assertNotEmptyString(e.invocationId,"Invalid payload for Invocation message.")}_isStreamItemMessage(e){if(this._assertNotEmptyString(e.invocationId,"Invalid payload for StreamItem message."),void 0===e.item)throw new Error("Invalid payload for StreamItem message.")}_isCompletionMessage(e){if(e.result&&e.error)throw new Error("Invalid payload for Completion message.");!e.result&&e.error&&this._assertNotEmptyString(e.error,"Invalid payload for Completion message."),this._assertNotEmptyString(e.invocationId,"Invalid payload for Completion message.")}_isAckMessage(e){if("number"!=typeof e.sequenceId)throw new Error("Invalid SequenceId for Ack message.")}_isSequenceMessage(e){if("number"!=typeof e.sequenceId)throw new Error("Invalid SequenceId for Sequence message.")}_assertNotEmptyString(e,t){if("string"!=typeof e||""===e)throw new Error(t)}}const On={trace:Zt.Trace,debug:Zt.Debug,info:Zt.Information,information:Zt.Information,warn:Zt.Warning,warning:Zt.Warning,error:Zt.Error,critical:Zt.Critical,none:Zt.None};class Fn{configureLogging(e){if(on.isRequired(e,"logging"),function(e){return void 0!==e.log}(e))this.logger=e;else if("string"==typeof e){const t=function(e){const t=On[e.toLowerCase()];if(void 0!==t)return t;throw new Error(`Unknown log level: ${e}`)}(e);this.logger=new hn(t)}else this.logger=new hn(e);return this}withUrl(e,t){return on.isRequired(e,"url"),on.isNotEmpty(e,"url"),this.url=e,this.httpConnectionOptions="object"==typeof t?{...this.httpConnectionOptions,...t}:{...this.httpConnectionOptions,transport:t},this}withHubProtocol(e){return on.isRequired(e,"protocol"),this.protocol=e,this}withAutomaticReconnect(e){if(this.reconnectPolicy)throw new Error("A reconnectPolicy has already been set.");return e?Array.isArray(e)?this.reconnectPolicy=new In(e):this.reconnectPolicy=e:this.reconnectPolicy=new In,this}withServerTimeout(e){return on.isRequired(e,"milliseconds"),this._serverTimeoutInMilliseconds=e,this}withKeepAliveInterval(e){return on.isRequired(e,"milliseconds"),this._keepAliveIntervalInMilliseconds=e,this}withStatefulReconnect(e){return void 0===this.httpConnectionOptions&&(this.httpConnectionOptions={}),this.httpConnectionOptions._useStatefulReconnect=!0,this._statefulReconnectBufferSize=null==e?void 0:e.bufferSize,this}build(){const e=this.httpConnectionOptions||{};if(void 0===e.logger&&(e.logger=this.logger),!this.url)throw new Error("The 'HubConnectionBuilder.withUrl' method must be called before building the connection.");const t=new Mn(this.url,e);return Cn.create(t,this.logger||nn.instance,this.protocol||new Bn,this.reconnectPolicy,this._serverTimeoutInMilliseconds,this._keepAliveIntervalInMilliseconds,this._statefulReconnectBufferSize)}}var $n;!function(e){e[e.Default=0]="Default",e[e.Server=1]="Server",e[e.WebAssembly=2]="WebAssembly",e[e.WebView=3]="WebView"}($n||($n={}));var Hn,jn,Wn,zn=4294967295;function qn(e,t,n){var o=Math.floor(n/4294967296),r=n;e.setUint32(t,o),e.setUint32(t+4,r)}function Jn(e,t){return 4294967296*e.getInt32(t)+e.getUint32(t+4)}var Vn=("undefined"==typeof process||"never"!==(null===(Hn=null===process||void 0===process?void 0:process.env)||void 0===Hn?void 0:Hn.TEXT_ENCODING))&&"undefined"!=typeof TextEncoder&&"undefined"!=typeof TextDecoder;function Kn(e){for(var t=e.length,n=0,o=0;o=55296&&r<=56319&&o65535&&(h-=65536,i.push(h>>>10&1023|55296),h=56320|1023&h),i.push(h)}else i.push(a);else i.push(a);i.length>=4096&&(s+=String.fromCharCode.apply(String,i),i.length=0)}return i.length>0&&(s+=String.fromCharCode.apply(String,i)),s}var Zn,eo=Vn?new TextDecoder:null,to=Vn?"undefined"!=typeof process&&"force"!==(null===(Wn=null===process||void 0===process?void 0:process.env)||void 0===Wn?void 0:Wn.TEXT_DECODER)?200:0:zn,no=function(e,t){this.type=e,this.data=t},oo=(Zn=function(e,t){return Zn=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},Zn(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}Zn(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),ro=function(e){function t(n){var o=e.call(this,n)||this,r=Object.create(t.prototype);return Object.setPrototypeOf(o,r),Object.defineProperty(o,"name",{configurable:!0,enumerable:!1,value:t.name}),o}return oo(t,e),t}(Error),io={type:-1,encode:function(e){var t,n,o,r;return e instanceof Date?function(e){var t,n=e.sec,o=e.nsec;if(n>=0&&o>=0&&n<=17179869183){if(0===o&&n<=4294967295){var r=new Uint8Array(4);return(t=new DataView(r.buffer)).setUint32(0,n),r}var i=n/4294967296,s=4294967295&n;return r=new Uint8Array(8),(t=new DataView(r.buffer)).setUint32(0,o<<2|3&i),t.setUint32(4,s),r}return r=new Uint8Array(12),(t=new DataView(r.buffer)).setUint32(0,o),qn(t,4,n),r}((o=1e6*((t=e.getTime())-1e3*(n=Math.floor(t/1e3))),{sec:n+(r=Math.floor(o/1e9)),nsec:o-1e9*r})):null},decode:function(e){var t=function(e){var t=new DataView(e.buffer,e.byteOffset,e.byteLength);switch(e.byteLength){case 4:return{sec:t.getUint32(0),nsec:0};case 8:var n=t.getUint32(0);return{sec:4294967296*(3&n)+t.getUint32(4),nsec:n>>>2};case 12:return{sec:Jn(t,4),nsec:t.getUint32(0)};default:throw new ro("Unrecognized data size for timestamp (expected 4, 8, or 12): ".concat(e.length))}}(e);return new Date(1e3*t.sec+t.nsec/1e6)}},so=function(){function e(){this.builtInEncoders=[],this.builtInDecoders=[],this.encoders=[],this.decoders=[],this.register(io)}return e.prototype.register=function(e){var t=e.type,n=e.encode,o=e.decode;if(t>=0)this.encoders[t]=n,this.decoders[t]=o;else{var r=1+t;this.builtInEncoders[r]=n,this.builtInDecoders[r]=o}},e.prototype.tryToEncode=function(e,t){for(var n=0;nthis.maxDepth)throw new Error("Too deep objects in depth ".concat(t));null==e?this.encodeNil():"boolean"==typeof e?this.encodeBoolean(e):"number"==typeof e?this.encodeNumber(e):"string"==typeof e?this.encodeString(e):this.encodeObject(e,t)},e.prototype.ensureBufferSizeToWrite=function(e){var t=this.pos+e;this.view.byteLength=0?e<128?this.writeU8(e):e<256?(this.writeU8(204),this.writeU8(e)):e<65536?(this.writeU8(205),this.writeU16(e)):e<4294967296?(this.writeU8(206),this.writeU32(e)):(this.writeU8(207),this.writeU64(e)):e>=-32?this.writeU8(224|e+32):e>=-128?(this.writeU8(208),this.writeI8(e)):e>=-32768?(this.writeU8(209),this.writeI16(e)):e>=-2147483648?(this.writeU8(210),this.writeI32(e)):(this.writeU8(211),this.writeI64(e)):this.forceFloat32?(this.writeU8(202),this.writeF32(e)):(this.writeU8(203),this.writeF64(e))},e.prototype.writeStringHeader=function(e){if(e<32)this.writeU8(160+e);else if(e<256)this.writeU8(217),this.writeU8(e);else if(e<65536)this.writeU8(218),this.writeU16(e);else{if(!(e<4294967296))throw new Error("Too long string: ".concat(e," bytes in UTF-8"));this.writeU8(219),this.writeU32(e)}},e.prototype.encodeString=function(e){if(e.length>Gn){var t=Kn(e);this.ensureBufferSizeToWrite(5+t),this.writeStringHeader(t),Yn(e,this.bytes,this.pos),this.pos+=t}else t=Kn(e),this.ensureBufferSizeToWrite(5+t),this.writeStringHeader(t),function(e,t,n){for(var o=e.length,r=n,i=0;i=55296&&s<=56319&&i>18&7|240,t[r++]=s>>12&63|128,t[r++]=s>>6&63|128):(t[r++]=s>>12&15|224,t[r++]=s>>6&63|128)}else t[r++]=s>>6&31|192;t[r++]=63&s|128}else t[r++]=s}}(e,this.bytes,this.pos),this.pos+=t},e.prototype.encodeObject=function(e,t){var n=this.extensionCodec.tryToEncode(e,this.context);if(null!=n)this.encodeExtension(n);else if(Array.isArray(e))this.encodeArray(e,t);else if(ArrayBuffer.isView(e))this.encodeBinary(e);else{if("object"!=typeof e)throw new Error("Unrecognized object: ".concat(Object.prototype.toString.apply(e)));this.encodeMap(e,t)}},e.prototype.encodeBinary=function(e){var t=e.byteLength;if(t<256)this.writeU8(196),this.writeU8(t);else if(t<65536)this.writeU8(197),this.writeU16(t);else{if(!(t<4294967296))throw new Error("Too large binary: ".concat(t));this.writeU8(198),this.writeU32(t)}var n=ao(e);this.writeU8a(n)},e.prototype.encodeArray=function(e,t){var n=e.length;if(n<16)this.writeU8(144+n);else if(n<65536)this.writeU8(220),this.writeU16(n);else{if(!(n<4294967296))throw new Error("Too large array: ".concat(n));this.writeU8(221),this.writeU32(n)}for(var o=0,r=e;o0&&e<=this.maxKeyLength},e.prototype.find=function(e,t,n){e:for(var o=0,r=this.caches[n-1];o=this.maxLengthPerKey?n[Math.random()*n.length|0]=o:n.push(o)},e.prototype.decode=function(e,t,n){var o=this.find(e,t,n);if(null!=o)return this.hit++,o;this.miss++;var r=Qn(e,t,n),i=Uint8Array.prototype.slice.call(e,t,t+n);return this.store(i,r),r},e}(),uo=function(e,t){var n,o,r,i,s={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function a(i){return function(a){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(r=2&i[0]?o.return:i[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,i[1])).done)return r;switch(o=0,r&&(i=[2&i[0],r.value]),i[0]){case 0:case 1:r=i;break;case 4:return s.label++,{value:i[1],done:!1};case 5:s.label++,o=i[1],i=[0];continue;case 7:i=s.ops.pop(),s.trys.pop();continue;default:if(!((r=(r=s.trys).length>0&&r[r.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!r||i[1]>r[0]&&i[1]=e},e.prototype.createExtraByteError=function(e){var t=this.view,n=this.pos;return new RangeError("Extra ".concat(t.byteLength-n," of ").concat(t.byteLength," byte(s) found at buffer[").concat(e,"]"))},e.prototype.decode=function(e){this.reinitializeState(),this.setBuffer(e);var t=this.doDecodeSync();if(this.hasRemaining(1))throw this.createExtraByteError(this.pos);return t},e.prototype.decodeMulti=function(e){return uo(this,(function(t){switch(t.label){case 0:this.reinitializeState(),this.setBuffer(e),t.label=1;case 1:return this.hasRemaining(1)?[4,this.doDecodeSync()]:[3,3];case 2:return t.sent(),[3,1];case 3:return[2]}}))},e.prototype.decodeAsync=function(e){var t,n,o,r,i,s,a;return i=this,a=function(){var i,s,a,c,l,h,d,u;return uo(this,(function(p){switch(p.label){case 0:i=!1,p.label=1;case 1:p.trys.push([1,6,7,12]),t=po(e),p.label=2;case 2:return[4,t.next()];case 3:if((n=p.sent()).done)return[3,5];if(a=n.value,i)throw this.createExtraByteError(this.totalPos);this.appendBuffer(a);try{s=this.doDecodeSync(),i=!0}catch(e){if(!(e instanceof yo))throw e}this.totalPos+=this.pos,p.label=4;case 4:return[3,2];case 5:return[3,12];case 6:return c=p.sent(),o={error:c},[3,12];case 7:return p.trys.push([7,,10,11]),n&&!n.done&&(r=t.return)?[4,r.call(t)]:[3,9];case 8:p.sent(),p.label=9;case 9:return[3,11];case 10:if(o)throw o.error;return[7];case 11:return[7];case 12:if(i){if(this.hasRemaining(1))throw this.createExtraByteError(this.totalPos);return[2,s]}throw h=(l=this).headByte,d=l.pos,u=l.totalPos,new RangeError("Insufficient data in parsing ".concat(lo(h)," at ").concat(u," (").concat(d," in the current buffer)"))}}))},new((s=void 0)||(s=Promise))((function(e,t){function n(e){try{r(a.next(e))}catch(e){t(e)}}function o(e){try{r(a.throw(e))}catch(e){t(e)}}function r(t){var r;t.done?e(t.value):(r=t.value,r instanceof s?r:new s((function(e){e(r)}))).then(n,o)}r((a=a.apply(i,[])).next())}))},e.prototype.decodeArrayStream=function(e){return this.decodeMultiAsync(e,!0)},e.prototype.decodeStream=function(e){return this.decodeMultiAsync(e,!1)},e.prototype.decodeMultiAsync=function(e,t){return function(n,o){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=function(){var n,o,r,i,s,a,c,l,h;return uo(this,(function(d){switch(d.label){case 0:n=t,o=-1,d.label=1;case 1:d.trys.push([1,13,14,19]),r=po(e),d.label=2;case 2:return[4,fo(r.next())];case 3:if((i=d.sent()).done)return[3,12];if(s=i.value,t&&0===o)throw this.createExtraByteError(this.totalPos);this.appendBuffer(s),n&&(o=this.readArraySize(),n=!1,this.complete()),d.label=4;case 4:d.trys.push([4,9,,10]),d.label=5;case 5:return[4,fo(this.doDecodeSync())];case 6:return[4,d.sent()];case 7:return d.sent(),0==--o?[3,8]:[3,5];case 8:return[3,10];case 9:if(!((a=d.sent())instanceof yo))throw a;return[3,10];case 10:this.totalPos+=this.pos,d.label=11;case 11:return[3,2];case 12:return[3,19];case 13:return c=d.sent(),l={error:c},[3,19];case 14:return d.trys.push([14,,17,18]),i&&!i.done&&(h=r.return)?[4,fo(h.call(r))]:[3,16];case 15:d.sent(),d.label=16;case 16:return[3,18];case 17:if(l)throw l.error;return[7];case 18:return[7];case 19:return[2]}}))}.apply(n,o||[]),s=[];return r={},a("next"),a("throw"),a("return"),r[Symbol.asyncIterator]=function(){return this},r;function a(e){i[e]&&(r[e]=function(t){return new Promise((function(n,o){s.push([e,t,n,o])>1||c(e,t)}))})}function c(e,t){try{(n=i[e](t)).value instanceof fo?Promise.resolve(n.value.v).then(l,h):d(s[0][2],n)}catch(e){d(s[0][3],e)}var n}function l(e){c("next",e)}function h(e){c("throw",e)}function d(e,t){e(t),s.shift(),s.length&&c(s[0][0],s[0][1])}}(this,arguments)},e.prototype.doDecodeSync=function(){e:for(;;){var e=this.readHeadByte(),t=void 0;if(e>=224)t=e-256;else if(e<192)if(e<128)t=e;else if(e<144){if(0!=(o=e-128)){this.pushMapState(o),this.complete();continue e}t={}}else if(e<160){if(0!=(o=e-144)){this.pushArrayState(o),this.complete();continue e}t=[]}else{var n=e-160;t=this.decodeUtf8String(n,0)}else if(192===e)t=null;else if(194===e)t=!1;else if(195===e)t=!0;else if(202===e)t=this.readF32();else if(203===e)t=this.readF64();else if(204===e)t=this.readU8();else if(205===e)t=this.readU16();else if(206===e)t=this.readU32();else if(207===e)t=this.readU64();else if(208===e)t=this.readI8();else if(209===e)t=this.readI16();else if(210===e)t=this.readI32();else if(211===e)t=this.readI64();else if(217===e)n=this.lookU8(),t=this.decodeUtf8String(n,1);else if(218===e)n=this.lookU16(),t=this.decodeUtf8String(n,2);else if(219===e)n=this.lookU32(),t=this.decodeUtf8String(n,4);else if(220===e){if(0!==(o=this.readU16())){this.pushArrayState(o),this.complete();continue e}t=[]}else if(221===e){if(0!==(o=this.readU32())){this.pushArrayState(o),this.complete();continue e}t=[]}else if(222===e){if(0!==(o=this.readU16())){this.pushMapState(o),this.complete();continue e}t={}}else if(223===e){if(0!==(o=this.readU32())){this.pushMapState(o),this.complete();continue e}t={}}else if(196===e){var o=this.lookU8();t=this.decodeBinary(o,1)}else if(197===e)o=this.lookU16(),t=this.decodeBinary(o,2);else if(198===e)o=this.lookU32(),t=this.decodeBinary(o,4);else if(212===e)t=this.decodeExtension(1,0);else if(213===e)t=this.decodeExtension(2,0);else if(214===e)t=this.decodeExtension(4,0);else if(215===e)t=this.decodeExtension(8,0);else if(216===e)t=this.decodeExtension(16,0);else if(199===e)o=this.lookU8(),t=this.decodeExtension(o,1);else if(200===e)o=this.lookU16(),t=this.decodeExtension(o,2);else{if(201!==e)throw new ro("Unrecognized type byte: ".concat(lo(e)));o=this.lookU32(),t=this.decodeExtension(o,4)}this.complete();for(var r=this.stack;r.length>0;){var i=r[r.length-1];if(0===i.type){if(i.array[i.position]=t,i.position++,i.position!==i.size)continue e;r.pop(),t=i.array}else{if(1===i.type){if("string"!=(s=typeof t)&&"number"!==s)throw new ro("The type of key must be string or number but "+typeof t);if("__proto__"===t)throw new ro("The key __proto__ is not allowed");i.key=t,i.type=2;continue e}if(i.map[i.key]=t,i.readCount++,i.readCount!==i.size){i.key=null,i.type=1;continue e}r.pop(),t=i.map}}return t}var s},e.prototype.readHeadByte=function(){return-1===this.headByte&&(this.headByte=this.readU8()),this.headByte},e.prototype.complete=function(){this.headByte=-1},e.prototype.readArraySize=function(){var e=this.readHeadByte();switch(e){case 220:return this.readU16();case 221:return this.readU32();default:if(e<160)return e-144;throw new ro("Unrecognized array type byte: ".concat(lo(e)))}},e.prototype.pushMapState=function(e){if(e>this.maxMapLength)throw new ro("Max length exceeded: map length (".concat(e,") > maxMapLengthLength (").concat(this.maxMapLength,")"));this.stack.push({type:1,size:e,key:null,readCount:0,map:{}})},e.prototype.pushArrayState=function(e){if(e>this.maxArrayLength)throw new ro("Max length exceeded: array length (".concat(e,") > maxArrayLength (").concat(this.maxArrayLength,")"));this.stack.push({type:0,size:e,array:new Array(e),position:0})},e.prototype.decodeUtf8String=function(e,t){var n;if(e>this.maxStrLength)throw new ro("Max length exceeded: UTF-8 byte length (".concat(e,") > maxStrLength (").concat(this.maxStrLength,")"));if(this.bytes.byteLengthto?function(e,t,n){var o=e.subarray(t,t+n);return eo.decode(o)}(this.bytes,r,e):Qn(this.bytes,r,e),this.pos+=t+e,o},e.prototype.stateIsMapKey=function(){return this.stack.length>0&&1===this.stack[this.stack.length-1].type},e.prototype.decodeBinary=function(e,t){if(e>this.maxBinLength)throw new ro("Max length exceeded: bin length (".concat(e,") > maxBinLength (").concat(this.maxBinLength,")"));if(!this.hasRemaining(e+t))throw vo;var n=this.pos+t,o=this.bytes.subarray(n,n+e);return this.pos+=t+e,o},e.prototype.decodeExtension=function(e,t){if(e>this.maxExtLength)throw new ro("Max length exceeded: ext length (".concat(e,") > maxExtLength (").concat(this.maxExtLength,")"));var n=this.view.getInt8(this.pos+t),o=this.decodeBinary(e,t+1);return this.extensionCodec.decode(o,n,this.context)},e.prototype.lookU8=function(){return this.view.getUint8(this.pos)},e.prototype.lookU16=function(){return this.view.getUint16(this.pos)},e.prototype.lookU32=function(){return this.view.getUint32(this.pos)},e.prototype.readU8=function(){var e=this.view.getUint8(this.pos);return this.pos++,e},e.prototype.readI8=function(){var e=this.view.getInt8(this.pos);return this.pos++,e},e.prototype.readU16=function(){var e=this.view.getUint16(this.pos);return this.pos+=2,e},e.prototype.readI16=function(){var e=this.view.getInt16(this.pos);return this.pos+=2,e},e.prototype.readU32=function(){var e=this.view.getUint32(this.pos);return this.pos+=4,e},e.prototype.readI32=function(){var e=this.view.getInt32(this.pos);return this.pos+=4,e},e.prototype.readU64=function(){var e,t,n=(e=this.view,t=this.pos,4294967296*e.getUint32(t)+e.getUint32(t+4));return this.pos+=8,n},e.prototype.readI64=function(){var e=Jn(this.view,this.pos);return this.pos+=8,e},e.prototype.readF32=function(){var e=this.view.getFloat32(this.pos);return this.pos+=4,e},e.prototype.readF64=function(){var e=this.view.getFloat64(this.pos);return this.pos+=8,e},e}();class _o{static write(e){let t=e.byteLength||e.length;const n=[];do{let e=127&t;t>>=7,t>0&&(e|=128),n.push(e)}while(t>0);t=e.byteLength||e.length;const o=new Uint8Array(n.length+t);return o.set(n,0),o.set(e,n.length),o.buffer}static parse(e){const t=[],n=new Uint8Array(e),o=[0,7,14,21,28];for(let r=0;r7)throw new Error("Messages bigger than 2GB are not supported.");if(!(n.byteLength>=r+s+a))throw new Error("Incomplete message.");t.push(n.slice?n.slice(r+s,r+s+a):n.subarray(r+s,r+s+a)),r=r+s+a}return t}}const So=new Uint8Array([145,en.Ping]);class Co{constructor(e){this.name="messagepack",this.version=2,this.transferFormat=An.Binary,this._errorResult=1,this._voidResult=2,this._nonVoidResult=3,e=e||{},this._encoder=new co(e.extensionCodec,e.context,e.maxDepth,e.initialBufferSize,e.sortKeys,e.forceFloat32,e.ignoreUndefined,e.forceIntegerToFloat),this._decoder=new bo(e.extensionCodec,e.context,e.maxStrLength,e.maxBinLength,e.maxArrayLength,e.maxMapLength,e.maxExtLength)}parseMessages(e,t){if(!(n=e)||"undefined"==typeof ArrayBuffer||!(n instanceof ArrayBuffer||n.constructor&&"ArrayBuffer"===n.constructor.name))throw new Error("Invalid input for MessagePack hub protocol. Expected an ArrayBuffer.");var n;null===t&&(t=nn.instance);const o=_o.parse(e),r=[];for(const e of o){const n=this._parseMessage(e,t);n&&r.push(n)}return r}writeMessage(e){switch(e.type){case en.Invocation:return this._writeInvocation(e);case en.StreamInvocation:return this._writeStreamInvocation(e);case en.StreamItem:return this._writeStreamItem(e);case en.Completion:return this._writeCompletion(e);case en.Ping:return _o.write(So);case en.CancelInvocation:return this._writeCancelInvocation(e);case en.Close:return this._writeClose();case en.Ack:return this._writeAck(e);case en.Sequence:return this._writeSequence(e);default:throw new Error("Invalid message type.")}}_parseMessage(e,t){if(0===e.length)throw new Error("Invalid payload.");const n=this._decoder.decode(e);if(0===n.length||!(n instanceof Array))throw new Error("Invalid payload.");const o=n[0];switch(o){case en.Invocation:return this._createInvocationMessage(this._readHeaders(n),n);case en.StreamItem:return this._createStreamItemMessage(this._readHeaders(n),n);case en.Completion:return this._createCompletionMessage(this._readHeaders(n),n);case en.Ping:return this._createPingMessage(n);case en.Close:return this._createCloseMessage(n);case en.Ack:return this._createAckMessage(n);case en.Sequence:return this._createSequenceMessage(n);default:return t.log(Zt.Information,"Unknown message type '"+o+"' ignored."),null}}_createCloseMessage(e){if(e.length<2)throw new Error("Invalid payload for Close message.");return{allowReconnect:e.length>=3?e[2]:void 0,error:e[1],type:en.Close}}_createPingMessage(e){if(e.length<1)throw new Error("Invalid payload for Ping message.");return{type:en.Ping}}_createInvocationMessage(e,t){if(t.length<5)throw new Error("Invalid payload for Invocation message.");const n=t[2];return n?{arguments:t[4],headers:e,invocationId:n,streamIds:[],target:t[3],type:en.Invocation}:{arguments:t[4],headers:e,streamIds:[],target:t[3],type:en.Invocation}}_createStreamItemMessage(e,t){if(t.length<4)throw new Error("Invalid payload for StreamItem message.");return{headers:e,invocationId:t[2],item:t[3],type:en.StreamItem}}_createCompletionMessage(e,t){if(t.length<4)throw new Error("Invalid payload for Completion message.");const n=t[3];if(n!==this._voidResult&&t.length<5)throw new Error("Invalid payload for Completion message.");let o,r;switch(n){case this._errorResult:o=t[4];break;case this._nonVoidResult:r=t[4]}return{error:o,headers:e,invocationId:t[2],result:r,type:en.Completion}}_createAckMessage(e){if(e.length<1)throw new Error("Invalid payload for Ack message.");return{sequenceId:e[1],type:en.Ack}}_createSequenceMessage(e){if(e.length<1)throw new Error("Invalid payload for Sequence message.");return{sequenceId:e[1],type:en.Sequence}}_writeInvocation(e){let t;return t=e.streamIds?this._encoder.encode([en.Invocation,e.headers||{},e.invocationId||null,e.target,e.arguments,e.streamIds]):this._encoder.encode([en.Invocation,e.headers||{},e.invocationId||null,e.target,e.arguments]),_o.write(t.slice())}_writeStreamInvocation(e){let t;return t=e.streamIds?this._encoder.encode([en.StreamInvocation,e.headers||{},e.invocationId,e.target,e.arguments,e.streamIds]):this._encoder.encode([en.StreamInvocation,e.headers||{},e.invocationId,e.target,e.arguments]),_o.write(t.slice())}_writeStreamItem(e){const t=this._encoder.encode([en.StreamItem,e.headers||{},e.invocationId,e.item]);return _o.write(t.slice())}_writeCompletion(e){const t=e.error?this._errorResult:void 0!==e.result?this._nonVoidResult:this._voidResult;let n;switch(t){case this._errorResult:n=this._encoder.encode([en.Completion,e.headers||{},e.invocationId,t,e.error]);break;case this._voidResult:n=this._encoder.encode([en.Completion,e.headers||{},e.invocationId,t]);break;case this._nonVoidResult:n=this._encoder.encode([en.Completion,e.headers||{},e.invocationId,t,e.result])}return _o.write(n.slice())}_writeCancelInvocation(e){const t=this._encoder.encode([en.CancelInvocation,e.headers||{},e.invocationId]);return _o.write(t.slice())}_writeClose(){const e=this._encoder.encode([en.Close,null]);return _o.write(e.slice())}_writeAck(e){const t=this._encoder.encode([en.Ack,e.sequenceId]);return _o.write(t.slice())}_writeSequence(e){const t=this._encoder.encode([en.Sequence,e.sequenceId]);return _o.write(t.slice())}_readHeaders(e){const t=e[1];if("object"!=typeof t)throw new Error("Invalid headers.");return t}}const Eo="function"==typeof TextDecoder?new TextDecoder("utf-8"):null,Io=Eo?Eo.decode.bind(Eo):function(e){let t=0;const n=e.length,o=[],r=[];for(;t65535&&(r-=65536,o.push(r>>>10&1023|55296),r=56320|1023&r),o.push(r)}}else o.push(n);o.length>1024&&(r.push(String.fromCharCode.apply(null,o)),o.length=0)}return r.push(String.fromCharCode.apply(null,o)),r.join("")},ko=Math.pow(2,32),Ro=Math.pow(2,21)-1;function To(e,t){return e[t]|e[t+1]<<8|e[t+2]<<16|e[t+3]<<24}function Ao(e,t){return e[t]+(e[t+1]<<8)+(e[t+2]<<16)+(e[t+3]<<24>>>0)}function Do(e,t){const n=Ao(e,t+4);if(n>Ro)throw new Error(`Cannot read uint64 with high order part ${n}, because the result would exceed Number.MAX_SAFE_INTEGER.`);return n*ko+Ao(e,t)}class No{constructor(e){this.batchData=e;const t=new Lo(e);this.arrayRangeReader=new Uo(e),this.arrayBuilderSegmentReader=new Bo(e),this.diffReader=new xo(e),this.editReader=new Po(e,t),this.frameReader=new Mo(e,t)}updatedComponents(){return To(this.batchData,this.batchData.length-20)}referenceFrames(){return To(this.batchData,this.batchData.length-16)}disposedComponentIds(){return To(this.batchData,this.batchData.length-12)}disposedEventHandlerIds(){return To(this.batchData,this.batchData.length-8)}updatedComponentsEntry(e,t){const n=e+4*t;return To(this.batchData,n)}referenceFramesEntry(e,t){return e+20*t}disposedComponentIdsEntry(e,t){const n=e+4*t;return To(this.batchData,n)}disposedEventHandlerIdsEntry(e,t){const n=e+8*t;return Do(this.batchData,n)}}class xo{constructor(e){this.batchDataUint8=e}componentId(e){return To(this.batchDataUint8,e)}edits(e){return e+4}editsEntry(e,t){return e+16*t}}class Po{constructor(e,t){this.batchDataUint8=e,this.stringReader=t}editType(e){return To(this.batchDataUint8,e)}siblingIndex(e){return To(this.batchDataUint8,e+4)}newTreeIndex(e){return To(this.batchDataUint8,e+8)}moveToSiblingIndex(e){return To(this.batchDataUint8,e+8)}removedAttributeName(e){const t=To(this.batchDataUint8,e+12);return this.stringReader.readString(t)}}class Mo{constructor(e,t){this.batchDataUint8=e,this.stringReader=t}frameType(e){return To(this.batchDataUint8,e)}subtreeLength(e){return To(this.batchDataUint8,e+4)}elementReferenceCaptureId(e){const t=To(this.batchDataUint8,e+4);return this.stringReader.readString(t)}componentId(e){return To(this.batchDataUint8,e+8)}elementName(e){const t=To(this.batchDataUint8,e+8);return this.stringReader.readString(t)}textContent(e){const t=To(this.batchDataUint8,e+4);return this.stringReader.readString(t)}markupContent(e){const t=To(this.batchDataUint8,e+4);return this.stringReader.readString(t)}attributeName(e){const t=To(this.batchDataUint8,e+4);return this.stringReader.readString(t)}attributeValue(e){const t=To(this.batchDataUint8,e+8);return this.stringReader.readString(t)}attributeEventHandlerId(e){return Do(this.batchDataUint8,e+12)}}class Lo{constructor(e){this.batchDataUint8=e,this.stringTableStartIndex=To(e,e.length-4)}readString(e){if(-1===e)return null;{const n=To(this.batchDataUint8,this.stringTableStartIndex+4*e),o=function(e,t){let n=0,o=0;for(let r=0;r<4;r++){const i=e[t+r];if(n|=(127&i)<this.nextBatchId)return this.fatalError?(this.logger.log(Ct.Debug,`Received a new batch ${e} but errored out on a previous batch ${this.nextBatchId-1}`),void await n.send("OnRenderCompleted",this.nextBatchId-1,this.fatalError.toString())):void this.logger.log(Ct.Debug,`Waiting for batch ${this.nextBatchId}. Batch ${e} not processed.`);try{this.nextBatchId++,this.logger.log(Ct.Debug,`Applying batch ${e}.`),xe($n.Server,new No(t)),await this.completeBatch(n,e)}catch(t){throw this.fatalError=t.toString(),this.logger.log(Ct.Error,`There was an error applying batch ${e}.`),n.send("OnRenderCompleted",e,t.toString()),t}}getLastBatchid(){return this.nextBatchId-1}async completeBatch(e,t){try{await e.send("OnRenderCompleted",t,null)}catch{this.logger.log(Ct.Warning,`Failed to deliver completion notification for render '${t}'.`)}}}let Fo=!1;function $o(){const e=document.querySelector("#blazor-error-ui");e&&(e.style.display="block"),Fo||(Fo=!0,document.querySelectorAll("#blazor-error-ui .reload").forEach((e=>{e.onclick=function(e){location.reload(),e.preventDefault()}})),document.querySelectorAll("#blazor-error-ui .dismiss").forEach((e=>{e.onclick=function(e){const t=document.querySelector("#blazor-error-ui");t&&(t.style.display="none"),e.preventDefault()}})))}class Ho{constructor(t,n,o,r){this._renderingFailed=!1,this._disposed=!1,this._pausingState=new jo("pausing",!1,!1),this._resumingState=new jo("resuming",!1,!1),this._disconnectingState=new jo("disconnecting"),this._isFirstRender=!0,this._circuitId=void 0,this._applicationState=n,this._componentManager=t,this._options=o,this._logger=r,this._renderQueue=new Oo(this._logger),this._dispatcher=e.attachDispatcher(this)}start(){if(this.isDisposedOrDisposing())throw new Error("Cannot start a disposed circuit.");return this._startPromise||(this._startPromise=this.startCore()),this._startPromise}updateRootComponents(e,t){return this._isFirstRender?(this._isFirstRender=!1,this._connection?.send("UpdateRootComponents",e,this._applicationState)):this._connection?.send("UpdateRootComponents",e,t)}async startCore(){if(this._connection=await this.startConnection(),this._connection.state!==tn.Connected)return!1;const e=JSON.stringify(this._componentManager.initialComponents.map((e=>Ht(e))));if(this._circuitId=await this._connection.invoke("StartCircuit",Qe.getBaseURI(),Qe.getLocationHref(),e,this._applicationState||""),!this._circuitId)return!1;for(const e of this._options.circuitHandlers)e.onCircuitOpened&&e.onCircuitOpened();return!0}async startConnection(){const e=new Co;e.name="blazorpack";const t=(new Fn).withUrl("_blazor").withHubProtocol(e);this._options.configureSignalR(t);const n=t.build();n.on("JS.AttachComponent",((e,t)=>De($n.Server,this.resolveElement(t),e,!1))),n.on("JS.BeginInvokeJS",this._dispatcher.beginInvokeJSFromDotNet.bind(this._dispatcher)),n.on("JS.EndInvokeDotNet",this._dispatcher.endInvokeDotNetFromJS.bind(this._dispatcher)),n.on("JS.ReceiveByteArray",this._dispatcher.receiveByteArray.bind(this._dispatcher)),n.on("JS.SavePersistedState",((e,t,n)=>{if(!this._circuitId)throw new Error("Circuit host not initialized.");if(e!==this._circuitId)throw new Error(`Received persisted state for circuit ID '${e}', but the current circuit ID is '${this._circuitId}'.`);return this._persistedCircuitState={components:t,applicationState:n},!0})),n.on("JS.BeginTransmitStream",(e=>{const t=new ReadableStream({start:t=>{n.stream("SendDotNetStreamToJS",e).subscribe({next:e=>t.enqueue(e),complete:()=>t.close(),error:e=>t.error(e)})}});this._dispatcher.supplyDotNetStream(e,t)})),n.on("JS.RenderBatch",(async(e,t)=>{this._logger.log(Zt.Debug,`Received render batch with id ${e} and ${t.byteLength} bytes.`),await this._renderQueue.processBatch(e,t,this._connection),this._componentManager.onAfterRenderBatch?.($n.Server)})),n.on("JS.EndUpdateRootComponents",(e=>{this._componentManager.onAfterUpdateRootComponents?.(e)})),n.on("JS.EndLocationChanging",St._internal.navigationManager.endLocationChanging),n.onclose((e=>{this._interopMethodsForReconnection=function(e){const t=C.get(e);if(!t)throw new Error(`Interop methods are not registered for renderer ${e}`);return C.delete(e),t}($n.Server);const t=this._pausingState.isInprogress();t||this._pausingState.transitionTo(!0),this._disposed||this._renderingFailed||t||this._options.reconnectionHandler.onConnectionDown(this._options.reconnectionOptions,e)})),n.on("JS.Error",(e=>{this._renderingFailed=!0,this.unhandledError(e),$o()}));try{await n.start()}catch(e){if(this.unhandledError(e),"FailedToNegotiateWithServerError"===e.errorType)throw e;$o(),e.innerErrors&&(e.innerErrors.some((e=>"UnsupportedTransportError"===e.errorType&&e.transport===Tn.WebSockets))?this._logger.log(Zt.Error,"Unable to connect, please ensure you are using an updated browser that supports WebSockets."):e.innerErrors.some((e=>"FailedToStartTransportError"===e.errorType&&e.transport===Tn.WebSockets))?this._logger.log(Zt.Error,"Unable to connect, please ensure WebSockets are available. A VPN or proxy may be blocking the connection."):e.innerErrors.some((e=>"DisabledTransportError"===e.errorType&&e.transport===Tn.LongPolling))&&this._logger.log(Zt.Error,"Unable to initiate a SignalR connection to the server. This might be because the server is not configured to support WebSockets. For additional details, visit https://aka.ms/blazor-server-websockets-error."))}return n.connection?.features?.inherentKeepAlive&&this._logger.log(Zt.Warning,"Failed to connect via WebSockets, using the Long Polling fallback transport. This may be due to a VPN or proxy blocking the connection. To troubleshoot this, visit https://aka.ms/blazor-server-using-fallback-long-polling."),n}async disconnect(){if(!this._circuitId)throw new Error("Circuit host not initialized.");if(this._disconnectingState.isInprogress())return this._logger.log(Zt.Trace,"Waiting for the circuit to finish disconnecting..."),this._disconnectingState.currentProgress();try{this._disconnectingState.reset();const e=this._disconnectingState.currentProgress();return this._logger.log(Zt.Trace,"Disconnecting the circuit..."),await this._connection.stop(),this._disconnectingState.complete(),e}catch(e){throw this._logger.log(Zt.Error,`Failed to disconnect the circuit: ${e}`),this._disconnectingState.fail(e),e}}async reconnect(){if(!this._circuitId)throw new Error("Circuit host not initialized.");return this._connection.state===tn.Connected||(this._connection=await this.startConnection(),this._interopMethodsForReconnection&&(k($n.Server,this._interopMethodsForReconnection),this._interopMethodsForReconnection=void 0),!!await this._connection.invoke("ConnectCircuit",this._circuitId)&&(this._options.reconnectionHandler.onConnectionUp(),!0))}async pause(e){if(!this._circuitId)return this._logger.log(Zt.Error,"Circuit host not initialized."),!1;if(this._connection.state!==tn.Connected)return this._logger.log(Zt.Trace,"Pause can only be triggered on connected circuits."),!1;if(this._resumingState.isInprogress())return this._logger.log(Zt.Trace,"Circuit is currently resuming..."),!1;if(this._pausingState.isInprogress())return this._logger.log(Zt.Trace,"Waiting for the circuit to finish pausing..."),this._pausingState.currentProgress();if(!0===this._pausingState.lastValue())return this._logger.log(Zt.Trace,"Circuit is already paused."),!0;this._pausingState.reset();const t=this._pausingState.currentProgress();try{this._logger.log(Zt.Trace,"Pausing the circuit..."),this._options.reconnectionHandler?.onConnectionDown(this._options.reconnectionOptions,void 0,!0,e);const t=await this._connection.invoke("PauseCircuit");this._pausingState.complete(t)}catch(e){this._logger.log(Zt.Error,`Failed to pause the circuit: ${e}`),this._pausingState.fail(e)}return await this.disconnect(),t}async resume(){if(!this._circuitId)throw this._logger.log(Zt.Error,"Circuit host not initialized."),new Error("Circuit host not initialized.");if(this._disconnectingState.isInprogress()&&(this._logger.log(Zt.Trace,"Circuit is disconnecting, cannot resume."),await this._disconnectingState.currentProgress()),this._pausingState.isInprogress())return this._logger.log(Zt.Trace,"Waiting for the circuit to finish pausing..."),!1;if(!this._pausingState.lastValue())return this._logger.log(Zt.Trace,"Circuit is not paused."),!1;if(this._connection.state!==tn.Connected&&(this._logger.log(Zt.Trace,"Reestablishing SignalR connection..."),this._connection=await this.startConnection()),this._resumingState.isInprogress())return this._logger.log(Zt.Trace,"Waiting for the circuit to finish resuming..."),this._resumingState.currentProgress();this._resumingState.reset();const e=this._resumingState.currentProgress();try{for(const e of this._options.circuitHandlers)e.onCircuitClosed&&e.onCircuitClosed();const t=this._persistedCircuitState;this._persistedCircuitState=void 0;const n=await this._connection.invoke("ResumeCircuit",this._circuitId,Qe.getBaseURI(),Qe.getLocationHref(),t?.components??"[]",t?.applicationState??"");if(!n)return this._resumingState.complete(!1),e;this._pausingState.transitionTo(!1),this._resumingState.complete(!0),this._circuitId=n,this._renderQueue=new Oo(this._logger);for(const e of this._options.circuitHandlers)e.onCircuitOpened&&e.onCircuitOpened();return this._options.reconnectionHandler.onConnectionUp(),this._componentManager.onComponentReload?.($n.Server),e}catch(t){return this._logger.log(Zt.Error,`Failed to resume the circuit: ${t}`),this._resumingState.fail(t),e}}beginInvokeDotNetFromJS(e,t,n,o,r){this.throwIfDispatchingWhenDisposed(),this._connection.send("BeginInvokeDotNetFromJS",e?e.toString():null,t,n,o||0,r)}endInvokeJSFromDotNet(e,t,n){this.throwIfDispatchingWhenDisposed(),this._connection.send("EndInvokeJSFromDotNet",e,t,n)}sendByteArray(e,t){this.throwIfDispatchingWhenDisposed(),this._connection.send("ReceiveByteArray",e,t)}throwIfDispatchingWhenDisposed(){if(this._disposed)throw new Error("The circuit associated with this dispatcher is no longer available.")}sendLocationChanged(e,t,n){return this._connection.send("OnLocationChanged",e,t,n)}sendLocationChanging(e,t,n,o){return this._connection.send("OnLocationChanging",e,t,n,o)}sendJsDataStream(e,t,n){return function(e,t,n,o){setTimeout((async()=>{let r=5,i=(new Date).valueOf();try{const s=t instanceof Blob?t.size:t.byteLength;let a=0,c=0;for(;a1)await e.send("ReceiveJSDataChunk",n,c,h,null);else{if(!await e.invoke("ReceiveJSDataChunk",n,c,h,null))break;const t=(new Date).valueOf(),o=t-i;i=t,r=Math.max(1,Math.round(500/Math.max(1,o)))}a+=l,c++}}catch(t){await e.send("ReceiveJSDataChunk",n,-1,null,t.toString())}}),0)}(this._connection,e,t,n)}resolveElement(e){const t=w(e);if(t)return j(t,!0);const n=Number.parseInt(e);if(!Number.isNaN(n))return H(this._componentManager.resolveRootComponent(n));throw new Error(`Invalid sequence number or identifier '${e}'.`)}getRootComponentManager(){return this._componentManager}unhandledError(e){this._logger.log(Zt.Error,e),this.disconnect()}getDisconnectFormData(){const e=new FormData,t=this._circuitId;return e.append("circuitId",t),e}didRenderingFail(){return this._renderingFailed}isDisposedOrDisposing(){return void 0!==this._disposePromise}sendDisconnectBeacon(){if(this._disposed)return;const e=this.getDisconnectFormData();this._disposed=navigator.sendBeacon("_blazor/disconnect",e)}dispose(){return this._disposePromise||(this._disposePromise=this.disposeCore()),this._disposePromise}async disposeCore(){if(!this._startPromise)return void(this._disposed=!0);await this._startPromise,this._disposed=!0,this._connection?.stop();const e=this.getDisconnectFormData();fetch("_blazor/disconnect",{method:"POST",body:e});for(const e of this._options.circuitHandlers)e.onCircuitClosed&&e.onCircuitClosed()}}class jo{constructor(e,t,n){this._stateName=e,this._resetValue=n,this._lastValue=t}reset(){if(this._promise)throw new Error(`Circuit state ${this._stateName} is already in progress`);const{promise:e,resolve:t,reject:n}=Promise.withResolvers();this._promise=e,this._resolve=t,this._reject=n,this._lastValue=this._resetValue}complete(e){if(!this._resolve)throw new Error(`Circuit state ${this._stateName} not initialized`);const t=this._resolve;this._lastValue=e,this._promise=void 0,this._resolve=void 0,this._reject=void 0,t(e)}fail(e){if(!this._reject)throw new Error(`Circuit state ${this._stateName} not initialized`);const t=this._reject;this._promise=void 0,this._resolve=void 0,this._reject=void 0,t(e)}isInprogress(){return!!this._promise}currentProgress(){if(!this.isInprogress())throw new Error(`Circuit state ${this._stateName} is not in progress`);return this._promise}transitionTo(e){if(this._promise)throw new Error(`Circuit state ${this._stateName} is in progress`);this._lastValue=e}lastValue(){return this._lastValue}}function Wo(e){const t={...zo,...e};return e&&e.reconnectionOptions&&(t.reconnectionOptions={...zo.reconnectionOptions,...e.reconnectionOptions}),t}const zo={configureSignalR:e=>{},logLevel:Ct.Warning,initializers:void 0,circuitHandlers:[],reconnectionOptions:{maxRetries:30,retryIntervalMilliseconds:function(e,t){return t&&e>=t?null:e<10?0:e<20?5e3:3e4},dialogId:"components-reconnect-modal"}};class qo{static{this.ReconnectOverlayClassName="components-reconnect-overlay"}static{this.ReconnectDialogClassName="components-reconnect-dialog"}static{this.ReconnectVisibleClassName="components-reconnect-visible"}static{this.RejoiningAnimationClassName="components-rejoining-animation"}static{this.AnimationRippleCount=2}constructor(e,t,n){this.document=t,this.logger=n,this.reconnect=!0,this.remote=!1,this.style=this.document.createElement("style"),this.style.innerHTML=qo.Css,this.overlay=this.document.createElement("div"),this.overlay.className=qo.ReconnectOverlayClassName,this.host=this.document.createElement("div"),this.host.id=e;const o=this.host.attachShadow({mode:"open"});this.dialog=t.createElement("div"),this.dialog.className=qo.ReconnectDialogClassName,o.appendChild(this.style),o.appendChild(this.overlay),this.rejoiningAnimation=t.createElement("div"),this.rejoiningAnimation.className=qo.RejoiningAnimationClassName;for(let e=0;e{"visible"===this.document.visibilityState&&this.retry()}}show(e){this.document.contains(this.host)||this.document.body.appendChild(this.host),this.reconnect="reconnect"===e?.type,this.reloadButton.style.display="none",this.rejoiningAnimation.style.display="block",this.status.innerHTML="Rejoining the server...",this.host.style.display="block",this.overlay.classList.add(qo.ReconnectVisibleClassName)}update(e){if(this.reconnect="reconnect"===e.type,this.reconnect){const{currentAttempt:t,secondsToNextAttempt:n}=e;if(1===t||0===n)this.status.innerHTML="Rejoining the server...";else{const e=1===n?"second":"seconds";this.status.innerHTML=`Rejoin failed... trying again in ${n} ${e}`}}else this.reloadButton.style.display="none",this.rejoiningAnimation.style.display="none",this.status.innerHTML="The session has been paused by the server.",this.resumeButton.style.display="block"}hide(){this.host.style.display="none",this.overlay.classList.remove(qo.ReconnectVisibleClassName)}failed(){this.rejoiningAnimation.style.display="none",this.reconnect?(this.reloadButton.style.display="block",this.status.innerHTML="Failed to rejoin.
Please retry or reload the page.",this.document.addEventListener("visibilitychange",this.retryWhenDocumentBecomesVisible)):(this.status.innerHTML="Failed to resume the session.
Please reload the page.",this.resumeButton.style.display="none",this.reloadButton.style.display="none")}rejected(){location.reload()}async retry(){this.document.removeEventListener("visibilitychange",this.retryWhenDocumentBecomesVisible),this.show();try{await St.reconnect()||(this.update({type:"pause",remote:this.remote}),await St.resumeCircuit()||this.rejected())}catch(e){this.logger.log(Ct.Error,e),this.failed()}}async resume(){try{await St.resumeCircuit()||this.failed()}catch(e){this.logger.log(Ct.Error,e),this.failed()}}static{this.Css=`\n .${this.ReconnectOverlayClassName} {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10000;\n display: none;\n overflow: hidden;\n animation: components-reconnect-fade-in;\n }\n\n .${this.ReconnectOverlayClassName}.${this.ReconnectVisibleClassName} {\n display: block;\n }\n\n .${this.ReconnectOverlayClassName}::before {\n content: '';\n background-color: rgba(0, 0, 0, 0.4);\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n animation: components-reconnect-fadeInOpacity 0.5s ease-in-out;\n opacity: 1;\n }\n\n .${this.ReconnectOverlayClassName} p {\n margin: 0;\n text-align: center;\n }\n\n .${this.ReconnectOverlayClassName} button {\n border: 0;\n background-color: #6b9ed2;\n color: white;\n padding: 4px 24px;\n border-radius: 4px;\n }\n\n .${this.ReconnectOverlayClassName} button:hover {\n background-color: #3b6ea2;\n }\n\n .${this.ReconnectOverlayClassName} button:active {\n background-color: #6b9ed2;\n }\n\n .${this.ReconnectDialogClassName} {\n position: relative;\n background-color: white;\n width: 20rem;\n margin: 20vh auto;\n padding: 2rem;\n border-radius: 0.5rem;\n box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);\n display: flex;\n flex-direction: column;\n align-items: center;\n gap: 1rem;\n opacity: 0;\n animation: components-reconnect-slideUp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-fadeInOpacity 0.5s ease-out 0.3s;\n animation-fill-mode: forwards;\n z-index: 10001;\n }\n\n .${this.RejoiningAnimationClassName} {\n display: block;\n position: relative;\n width: 80px;\n height: 80px;\n }\n\n .${this.RejoiningAnimationClassName} div {\n position: absolute;\n border: 3px solid #0087ff;\n opacity: 1;\n border-radius: 50%;\n animation: ${this.RejoiningAnimationClassName} 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;\n }\n\n .${this.RejoiningAnimationClassName} div:nth-child(2) {\n animation-delay: -0.5s;\n }\n\n @keyframes ${this.RejoiningAnimationClassName} {\n 0% {\n top: 40px;\n left: 40px;\n width: 0;\n height: 0;\n opacity: 0;\n }\n\n 4.9% {\n top: 40px;\n left: 40px;\n width: 0;\n height: 0;\n opacity: 0;\n }\n\n 5% {\n top: 40px;\n left: 40px;\n width: 0;\n height: 0;\n opacity: 1;\n }\n\n 100% {\n top: 0px;\n left: 0px;\n width: 80px;\n height: 80px;\n opacity: 0;\n }\n }\n\n @keyframes components-reconnect-fadeInOpacity {\n 0% {\n opacity: 0;\n }\n\n 100% {\n opacity: 1;\n }\n }\n\n @keyframes components-reconnect-slideUp {\n 0% {\n transform: translateY(30px) scale(0.95);\n }\n\n 100% {\n transform: translateY(0);\n }\n }\n `}}class Jo{static{this.ShowClassName="components-reconnect-show"}static{this.HideClassName="components-reconnect-hide"}static{this.RetryingClassName="components-reconnect-retrying"}static{this.FailedClassName="components-reconnect-failed"}static{this.PausedClassName="components-reconnect-paused"}static{this.ResumeFailedClassName="components-reconnect-resume-failed"}static{this.RejectedClassName="components-reconnect-rejected"}static{this.MaxRetriesId="components-reconnect-max-retries"}static{this.CurrentAttemptId="components-reconnect-current-attempt"}static{this.SecondsToNextAttemptId="components-seconds-to-next-attempt"}static{this.ReconnectStateChangedEventName="components-reconnect-state-changed"}constructor(e,t,n){if(this.dialog=e,this.document=t,this.reconnect=!1,this.document=t,void 0!==n){const e=this.document.getElementById(Jo.MaxRetriesId);e&&(e.innerText=n.toString())}}show(){this.removeClasses(),this.dialog.classList.add(Jo.ShowClassName),this.dispatchReconnectStateChangedEvent({state:"show"})}update(e){if(this.reconnect="reconnect"===e.type,"reconnect"===e.type){const{currentAttempt:t,secondsToNextAttempt:n}=e,o=this.document.getElementById(Jo.CurrentAttemptId);o&&(o.innerText=t.toString());const r=this.document.getElementById(Jo.SecondsToNextAttemptId);r&&(r.innerText=n.toString()),t>1&&n>0&&this.dialog.classList.add(Jo.RetryingClassName),this.dispatchReconnectStateChangedEvent({state:"retrying",currentAttempt:t,secondsToNextAttempt:n})}if("pause"===e.type){const t=e.remote;this.dialog.classList.remove(Jo.ShowClassName,Jo.RetryingClassName),this.dialog.classList.add(Jo.PausedClassName),this.dispatchReconnectStateChangedEvent({state:"paused",remote:t})}}hide(){this.removeClasses(),this.dialog.classList.add(Jo.HideClassName),this.dispatchReconnectStateChangedEvent({state:"hide"})}failed(){this.removeClasses(),this.reconnect?(this.dialog.classList.add(Jo.FailedClassName),this.dispatchReconnectStateChangedEvent({state:"failed"})):(this.dialog.classList.add(Jo.ResumeFailedClassName),this.dispatchReconnectStateChangedEvent({state:"resume-failed"}))}rejected(){this.removeClasses(),this.dialog.classList.add(Jo.RejectedClassName),this.dispatchReconnectStateChangedEvent({state:"rejected"})}removeClasses(){this.dialog.classList.remove(Jo.ShowClassName,Jo.HideClassName,Jo.RetryingClassName,Jo.FailedClassName,Jo.RejectedClassName,Jo.PausedClassName,Jo.ResumeFailedClassName)}dispatchReconnectStateChangedEvent(e){const t=new CustomEvent(Jo.ReconnectStateChangedEventName,{detail:e});this.dialog.dispatchEvent(t)}}class Vo{constructor(e,t,n,o){this._currentReconnectionProcess=null,this._logger=e,this._reconnectionDisplay=t,this._reconnectCallback=n||St.reconnect,this._resumeCallback=o||St.resumeCircuit}onConnectionDown(e,t,n,o){if(!this._reconnectionDisplay){const t=document.getElementById(e.dialogId);this._reconnectionDisplay=t?new Jo(t,document,e.maxRetries):new qo(e.dialogId,document,this._logger)}this._currentReconnectionProcess||(this._currentReconnectionProcess=new Ko(e,this._logger,this._reconnectCallback,this._resumeCallback,this._reconnectionDisplay,n,o))}onConnectionUp(){this._currentReconnectionProcess&&(this._currentReconnectionProcess.dispose(),this._currentReconnectionProcess=null)}}class Ko{static{this.MaximumFirstRetryInterval=3e3}constructor(e,t,n,o,r,i,s=!1){this.logger=t,this.reconnectCallback=n,this.resumeCallback=o,this.isGracefulPause=i,this.isRemote=s,this.isDisposed=!1,this.reconnectDisplay=r;const a={type:i?"pause":"reconnect",remote:this.isRemote,currentAttempt:0,secondsToNextAttempt:0};this.reconnectDisplay.show(a),this.isGracefulPause?this.reconnectDisplay.update({type:"pause",remote:this.isRemote}):this.attemptPeriodicReconnection(e)}dispose(){this.isDisposed=!0,this.reconnectDisplay.hide()}async attemptPeriodicReconnection(e){for(let t=0;void 0===e.maxRetries||tKo.MaximumFirstRetryInterval?Ko.MaximumFirstRetryInterval:e.retryIntervalMilliseconds;if(await this.runTimer(n,1e3,(e=>{this.reconnectDisplay.update({type:"reconnect",currentAttempt:t+1,secondsToNextAttempt:Math.round(e/1e3)})})),this.isDisposed)break;try{if(!await this.reconnectCallback()){if(this.reconnectDisplay.update({type:"pause",remote:!0}),await this.resumeCallback())return;return void this.reconnectDisplay.failed()}return}catch(e){this.logger.log(Ct.Error,e)}}this.reconnectDisplay.failed()}async runTimer(e,t,n){if(e<=0)return void n(0);let o,r,i=Date.now();n(e);const s=()=>{if(this.isDisposed)return void r();const a=Date.now(),c=a-i;i=a;const l=Math.max(1,Math.floor(c/t)),h=t*l;if((e-=h){"visible"===document.visibilityState&&(clearTimeout(o),n(0),r())};o=setTimeout(s,t),document.addEventListener("visibilitychange",a),await new Promise((e=>r=e)),document.removeEventListener("visibilitychange",a)}}class Xo{constructor(e=!0,t,n,o=0){this.singleRuntime=e,this.logger=t,this.webRendererId=o,this.afterStartedCallbacks=[],n&&this.afterStartedCallbacks.push(...n)}async importInitializersAsync(e,t){await Promise.all(e.map((e=>async function(e,n){let o;var r;n.moduleExports||(r=n.name,o=new URL(r,document.baseURI).toString(),n.moduleExports=await import(o));const i=n.moduleExports;if(void 0!==i){if(e.singleRuntime){const{beforeStart:n,afterStarted:o,beforeWebAssemblyStart:r,afterWebAssemblyStarted:a,beforeServerStart:c,afterServerStarted:l}=i;let h=n;e.webRendererId===$n.Server&&c&&(h=c),e.webRendererId===$n.WebAssembly&&r&&(h=r);let d=o;return e.webRendererId===$n.Server&&l&&(d=l),e.webRendererId===$n.WebAssembly&&a&&(d=a),s(e,h,d,t)}return function(e,t,n){const r=n[0],{beforeStart:i,afterStarted:a,beforeWebStart:c,afterWebStarted:l,beforeWebAssemblyStart:h,afterWebAssemblyStarted:d,beforeServerStart:u,afterServerStarted:p}=t,f=!(c||l||h||d||u||p||!i&&!a),g=f&&r.enableClassicInitializers;if(f&&!r.enableClassicInitializers)e.logger?.log(Ct.Warning,`Initializer '${o}' will be ignored because multiple runtimes are available. Use 'before(Web|WebAssembly|Server)Start' and 'after(Web|WebAssembly|Server)Started' instead.`);else if(g)return s(e,i,a,n);if(function(e){e.webAssembly?e.webAssembly.initializers||(e.webAssembly.initializers={beforeStart:[],afterStarted:[]}):e.webAssembly={initializers:{beforeStart:[],afterStarted:[]}},e.circuit?e.circuit.initializers||(e.circuit.initializers={beforeStart:[],afterStarted:[]}):e.circuit={initializers:{beforeStart:[],afterStarted:[]}}}(r),h&&r.webAssembly.initializers.beforeStart.push(h),d&&r.webAssembly.initializers.afterStarted.push(d),u&&r.circuit.initializers.beforeStart.push(u),p&&r.circuit.initializers.afterStarted.push(p),l&&e.afterStartedCallbacks.push(l),c)return c(r)}(e,i,t)}function s(e,t,n,o){if(n&&e.afterStartedCallbacks.push(n),t)return t(...o)}}(this,e))))}async invokeAfterStartedCallbacks(e){const t=(n=this.webRendererId,I.get(n)?.[1]);var n;t&&await t,await Promise.all(this.afterStartedCallbacks.map((t=>t(e))))}}let Go,Yo,Qo,Zo,er,tr,nr;function or(e){if(void 0!==tr)throw new Error("Blazor Server has already started.");return tr=new Promise(rr.bind(null,e)),tr}async function rr(e,t,n){await Go;const o=await async function(e){if(e.initializers)return await Promise.all(e.initializers.beforeStart.map((t=>t(e)))),new Xo(!1,void 0,e.initializers.afterStarted,$n.Server);const t=await fetch("_blazor/initializers",{method:"GET",credentials:"include",cache:"no-cache"}),n=(await t.json()).map((e=>({name:e}))),o=new Xo(!0,void 0,void 0,$n.Server);return await o.importInitializersAsync(n,[e]),o}(Zo);if(Yo=Dt(document)||"",er=new Et(Zo.logLevel),Qo=new Ho(e,Yo,Zo,er),er.log(Ct.Information,"Starting up Blazor server-side application."),St.reconnect=async()=>!(Qo.didRenderingFail()||!await Qo.reconnect()&&(er.log(Ct.Information,"Reconnection attempt to the circuit was rejected by the server. This may indicate that the associated state is no longer available on the server."),1)),St.pauseCircuit=async()=>!(Qo.didRenderingFail()||!await Qo.pause()&&(er.log(Ct.Information,"Pause attempt to the circuit was rejected by the server. This may indicate that the associated state is no longer available on the server."),1)),St.resumeCircuit=async()=>!(Qo.didRenderingFail()||!await Qo.resume()&&(er.log(Ct.Information,"Resume attempt to the circuit was rejected by the server. This may indicate that the associated state is no longer available on the server."),1)),St.defaultReconnectionHandler=new Vo(er),Zo.reconnectionHandler=Zo.reconnectionHandler||St.defaultReconnectionHandler,St._internal.navigationManager.listenForNavigationEvents($n.Server,((e,t,n)=>Qo.sendLocationChanged(e,t,n)),((e,t,n,o)=>Qo.sendLocationChanging(e,t,n,o))),St._internal.forceCloseConnection=()=>Qo.disconnect(),St._internal.sendJSDataStream=(e,t,n)=>Qo.sendJsDataStream(e,t,n),!await Qo.start())return er.log(Ct.Error,"Failed to start the circuit."),void t();const r=()=>{Qo.sendDisconnectBeacon()};St.disconnect=r,window.addEventListener("pagehide",r,{capture:!1,once:!0}),er.log(Ct.Information,"Blazor server-side application started."),o.invokeAfterStartedCallbacks(St),t()}async function ir(){if(!tr)throw new Error("Cannot start the circuit until Blazor Server has started.");return!(!Qo||Qo.isDisposedOrDisposing())||(nr?await nr:(await tr,(!Qo||!Qo.didRenderingFail())&&(Qo&&Qo.isDisposedOrDisposing()&&(Yo=Dt(document)||"",Qo=new Ho(Qo.getRootComponentManager(),Yo,Zo,er)),nr=Qo.start(),async function(e){await e,nr===e&&(nr=void 0)}(nr),nr)))}function sr(e,t){if(Qo&&!Qo.isDisposedOrDisposing())return Qo.updateRootComponents(e,t);!async function(e,t){await tr,await ir()&&Qo.updateRootComponents(e,t)}(e,t)}const ar=navigator,cr=ar.userAgentData&&ar.userAgentData.brands,lr=cr&&cr.length>0?cr.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):window.chrome,hr=ar.userAgentData?.platform??navigator.platform;function dr(e){return 0!==e.debugLevel&&(lr||navigator.userAgent.includes("Firefox"))}let ur,pr,fr,gr,mr=null;const yr={load:function(e,t){return async function(e,t){const{dotnet:n}=await async function(e){if("undefined"==typeof WebAssembly||!WebAssembly.validate)throw new Error("This browser does not support WebAssembly.");if(e.loadBootResource){const t="dotnetjs",n=e.loadBootResource(t,"dotnet.js","_framework/dotnet.js","","js-module-dotnet");if("string"==typeof n){const e=new URL(n,document.baseURI).toString();return await import(e)}if(n)throw new Error(`For a ${t} resource, custom loaders must supply a URI string.`)}return await import("./dotnet.js")}(e),o=function(e,t){const n={maxParallelDownloads:1e6,enableDownloadRetry:!1};e.environment&&(n.applicationEnvironment=e.environment);const o={...window.Module||{},onConfigLoaded:async n=>{n.environmentVariables||(n.environmentVariables={}),"sharded"===n.globalizationMode&&(n.environmentVariables.__BLAZOR_SHARDED_ICU="1"),St._internal.getApplicationEnvironment=()=>n.applicationEnvironment,t?.(n),gr=await async function(e,t){if(e.initializers)return await Promise.all(e.initializers.beforeStart.map((t=>t(e)))),new Xo(!1,void 0,e.initializers.afterStarted,$n.WebAssembly);{const n=[e,t.resources?.extensions??{}],o=new Xo(!0,void 0,void 0,$n.WebAssembly),r=t?.resources?.libraryInitializers;let i;return i=r?"length"in r?r:Object.keys(r).map((e=>({name:e}))):[],await o.importInitializersAsync(i,n),o}}(e,n)},onDownloadResourceProgress:vr,config:n,out:br,err:_r};return o}(e,t);e.applicationCulture&&n.withApplicationCulture(e.applicationCulture),e.environment&&n.withApplicationEnvironment(e.environment),e.loadBootResource&&n.withResourceLoader(e.loadBootResource),n.withModuleConfig(o),e.configureRuntime&&e.configureRuntime(n),fr=await n.create()}(e,t)},start:function(){return async function(){if(!fr)throw new Error("The runtime must be loaded it gets configured.");const{setModuleImports:t,INTERNAL:n,getConfig:o,invokeLibraryInitializers:r}=fr;pr=n,function(e){const t=hr.match(/^Mac/i)?"Cmd":"Alt";dr(e)&&console.info(`Debugging hotkey: Shift+${t}+D (when application has focus)`),document.addEventListener("keydown",(t=>{t.shiftKey&&(t.metaKey||t.altKey)&&"KeyD"===t.code&&(dr(e)?navigator.userAgent.includes("Firefox")?async function(){const e=await fetch(`_framework/debug?url=${encodeURIComponent(location.href)}&isFirefox=true`);200!==e.status&&console.warn(await e.text())}():lr?function(){const e=document.createElement("a");e.href=`_framework/debug?url=${encodeURIComponent(location.href)}`,e.target="_blank",e.rel="noopener noreferrer",e.click()}():console.error("Currently, only Microsoft Edge (80+), Google Chrome, or Chromium, are supported for debugging."):console.error("Cannot start debugging, because the application was not compiled with debugging enabled."))}))}(o()),St.runtime=fr,St._internal.dotNetCriticalError=_r,t("blazor-internal",{Blazor:{_internal:St._internal}});const i=await fr.getAssemblyExports("Microsoft.AspNetCore.Components.WebAssembly");return Object.assign(St._internal,{dotNetExports:{...i.Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime}}),ur=e.attachDispatcher({beginInvokeDotNetFromJS:(e,t,n,o,r)=>{if(Sr(),!o&&!t)throw new Error("Either assemblyName or dotNetObjectId must have a non null value.");const i=o?o.toString():t;St._internal.dotNetExports.BeginInvokeDotNet(e?e.toString():null,i,n,r)},endInvokeJSFromDotNet:(e,t,n)=>{St._internal.dotNetExports.EndInvokeJS(n)},sendByteArray:(e,t)=>{St._internal.dotNetExports.ReceiveByteArrayFromJS(e,t)},invokeDotNetFromJS:(e,t,n,o)=>(Sr(),St._internal.dotNetExports.InvokeDotNet(e||null,t,n??0,o))}),{invokeLibraryInitializers:r}}()},callEntryPoint:async function(){try{await fr.runMain(fr.getConfig().mainAssemblyName,[])}catch(e){console.error(e),$o()}},getArrayEntryPtr:function(e,t,n){const o=function(e){return e+12}(e)+4+t*n;return o},getObjectFieldsBaseAddress:function(e){return e+8},readInt16Field:function(e,t){return fr.getHeapI16(e+(t||0))},readInt32Field:function(e,t){return fr.getHeapI32(e+(t||0))},readUint64Field:function(e,t){return fr.getHeapU52(e+(t||0))},readObjectField:function(e,t){return fr.getHeapU32(e+(t||0))},readStringField:function(e,t,n){const o=fr.getHeapU32(e+(t||0));if(0===o)return null;if(n){const e=pr.monoObjectAsBoolOrNullUnsafe(o);if("boolean"==typeof e)return e?"":null}return pr.monoStringToStringUnsafe(o)},readStructField:function(e,t){return e+(t||0)},beginHeapLock:function(){return Sr(),mr=Cr.create(),mr},invokeWhenHeapUnlocked:function(e){mr?mr.enqueuePostReleaseAction(e):e()}};function vr(e,t){const n=e/t*100;document.documentElement.style.setProperty("--blazor-load-percentage",`${n}%`),document.documentElement.style.setProperty("--blazor-load-percentage-text",`"${Math.floor(n)}%"`)}const wr=["DEBUGGING ENABLED"],br=e=>wr.indexOf(e)<0&&console.log(e),_r=e=>{console.error(e||"(null)"),$o()};function Sr(){if(mr)throw new Error("Assertion failed - heap is currently locked")}class Cr{enqueuePostReleaseAction(e){this.postReleaseActions||(this.postReleaseActions=[]),this.postReleaseActions.push(e)}release(){if(mr!==this)throw new Error("Trying to release a lock which isn't current");for(pr.mono_wasm_gc_unlock(),mr=null;this.postReleaseActions?.length;)this.postReleaseActions.shift()(),Sr()}static create(){return pr.mono_wasm_gc_lock(),new Cr}}class Er{constructor(e){this.batchAddress=e,this.arrayRangeReader=Ir,this.arrayBuilderSegmentReader=kr,this.diffReader=Rr,this.editReader=Tr,this.frameReader=Ar}updatedComponents(){return t.readStructField(this.batchAddress,0)}referenceFrames(){return t.readStructField(this.batchAddress,Ir.structLength)}disposedComponentIds(){return t.readStructField(this.batchAddress,2*Ir.structLength)}disposedEventHandlerIds(){return t.readStructField(this.batchAddress,3*Ir.structLength)}updatedComponentsEntry(e,t){return Dr(e,t,Rr.structLength)}referenceFramesEntry(e,t){return Dr(e,t,Ar.structLength)}disposedComponentIdsEntry(e,n){const o=Dr(e,n,4);return t.readInt32Field(o)}disposedEventHandlerIdsEntry(e,n){const o=Dr(e,n,8);return t.readUint64Field(o)}}const Ir={structLength:8,values:e=>t.readObjectField(e,0),count:e=>t.readInt32Field(e,4)},kr={structLength:12,values:e=>{const n=t.readObjectField(e,0),o=t.getObjectFieldsBaseAddress(n);return t.readObjectField(o,0)},offset:e=>t.readInt32Field(e,4),count:e=>t.readInt32Field(e,8)},Rr={structLength:4+kr.structLength,componentId:e=>t.readInt32Field(e,0),edits:e=>t.readStructField(e,4),editsEntry:(e,t)=>Dr(e,t,Tr.structLength)},Tr={structLength:20,editType:e=>t.readInt32Field(e,0),siblingIndex:e=>t.readInt32Field(e,4),newTreeIndex:e=>t.readInt32Field(e,8),moveToSiblingIndex:e=>t.readInt32Field(e,8),removedAttributeName:e=>t.readStringField(e,16)},Ar={structLength:36,frameType:e=>t.readInt16Field(e,4),subtreeLength:e=>t.readInt32Field(e,8),elementReferenceCaptureId:e=>t.readStringField(e,16),componentId:e=>t.readInt32Field(e,12),elementName:e=>t.readStringField(e,16),textContent:e=>t.readStringField(e,16),markupContent:e=>t.readStringField(e,16),attributeName:e=>t.readStringField(e,16),attributeValue:e=>t.readStringField(e,24,!0),attributeEventHandlerId:e=>t.readUint64Field(e,8)};function Dr(e,n,o){return t.getArrayEntryPtr(e,n,o)}class Nr{constructor(e){this.componentManager=e}resolveRegisteredElement(e){const t=Number.parseInt(e);if(!Number.isNaN(t))return H(this.componentManager.resolveRootComponent(t))}getParameterValues(e){return this.componentManager.initialComponents[e].parameterValues}getParameterDefinitions(e){return this.componentManager.initialComponents[e].parameterDefinitions}getTypeName(e){return this.componentManager.initialComponents[e].typeName}getAssembly(e){return this.componentManager.initialComponents[e].assembly}getCount(){return this.componentManager.initialComponents.length}}let xr,Pr,Mr,Lr,Ur=!1,Br=!1,Or=!0,Fr=!1;const $r=new Promise((e=>{Lr=e}));let Hr;const jr=new Promise((e=>{Hr=e}));let Wr;const zr=new Promise((e=>{Wr=e}));function qr(e){if(xr)throw new Error("WebAssembly options have already been configured.");!async function(e){const t=await e;xr=t,Wr()}(e)}function Jr(e,t){if(void 0!==Mr)throw new Error("Blazor WebAssembly has already started.");return Mr=new Promise(Vr.bind(null,e,t)),Mr}async function Vr(e,n,o,r){(function(){if(window.parent!==window&&!window.opener&&window.frameElement){const e=window.sessionStorage&&window.sessionStorage["Microsoft.AspNetCore.Components.WebAssembly.Authentication.CachedAuthSettings"],t=e&&JSON.parse(e);return t&&t.redirect_uri&&location.href.startsWith(t.redirect_uri)}return!1})()&&await new Promise((()=>{}));const i=Kr(n);!function(){const e=D;D=(t,n,o)=>{((e,t,n)=>{const o=Ne(e);o?.eventDelegator.getHandler(t)&&yr.invokeWhenHeapUnlocked(n)})(t,n,(()=>e(t,n,o)))}}(),St._internal.invokeJSJson=Xr,St._internal.endInvokeDotNetFromJS=Gr,St._internal.receiveWebAssemblyDotNetDataStream=Yr,St._internal.receiveByteArray=Qr;const s=(t=yr,t);St.platform=s,St._internal.renderBatch=(e,t)=>{const n=yr.beginHeapLock();try{xe(e,new Er(t))}finally{n.release()}},St._internal.navigationManager.listenForNavigationEvents($n.WebAssembly,(async(e,t,n)=>{await ur.invokeDotNetStaticMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChanged",e,t,n)}),(async(e,t,n,o)=>{const r=await ur.invokeDotNetStaticMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChangingAsync",t,n,o);St._internal.navigationManager.endLocationChanging(e,r)}));const a=new Nr(e);St._internal.registeredComponents={getRegisteredComponentsCount:()=>a.getCount(),getAssembly:e=>a.getAssembly(e),getTypeName:e=>a.getTypeName(e),getParameterDefinitions:e=>a.getParameterDefinitions(e)||"",getParameterValues:e=>a.getParameterValues(e)||""},St._internal.getPersistedState=()=>Nt(document)||"",St._internal.getInitialComponentsUpdate=()=>jr,St._internal.updateRootComponents=(e,t)=>{St._internal.dotNetExports?.UpdateRootComponentsCore(e,t)},St._internal.endUpdateRootComponents=t=>e.onAfterUpdateRootComponents?.(t),St._internal.attachRootComponentToElement=(e,t,n)=>{const o=a.resolveRegisteredElement(e);o?De(n,o,t,!1):function(e,t,n){const o="::before";let r=!1;if(e.endsWith("::after"))e=e.slice(0,-7),r=!0;else if(e.endsWith(o))throw new Error(`The '${o}' selector is not supported.`);const i=w(e)||document.querySelector(e);if(!i)throw new Error(`Could not find any element matching selector '${e}'.`);De(n,j(i,!0),t,r)}(e,t,n)};try{await i,await s.start()}catch(e){throw new Error(`Failed to start platform. Reason: ${e}`)}s.callEntryPoint(),gr.invokeAfterStartedCallbacks(St),Br=!0,o()}function Kr(e){return Pr??=(async()=>{await zr;const t=xr??{};t.environment||(t.environment=e?.environmentName??void 0);const n=xr?.configureRuntime;t.configureRuntime=t=>{n?.(t),e?.environmentVariables&&t.withEnvironmentVariables(e.environmentVariables),Fr&&t.withEnvironmentVariable("__BLAZOR_WEBASSEMBLY_WAIT_FOR_ROOT_COMPONENTS","true")},await yr.load(t,Lr),Ur=!0})(),Pr}function Xr(e,t,n,o,r,i){return 0!==r?(ur.beginInvokeJSFromDotNet(r,e,o,n,t,i),null):ur.invokeJSFromDotNet(e,o,n,t,i)}function Gr(e,t,n){ur.endInvokeDotNetFromJS(e,t,n)}function Yr(e,t,n,o){!function(e,t,n,o,r){let i=_t.get(t);if(!i){const n=new ReadableStream({start(e){_t.set(t,e),i=e}});e.supplyDotNetStream(t,n)}r?(i.error(r),_t.delete(t)):0===o?(i.close(),_t.delete(t)):i.enqueue(n.length===o?n:n.subarray(0,o))}(ur,e,t,n,o)}function Qr(e,t){ur.receiveByteArray(e,t)}function Zr(e,t){t.namespaceURI?e.setAttributeNS(t.namespaceURI,t.name,t.value):e.setAttribute(t.name,t.value)}const ei="data-permanent";var ti,ni;!function(e){e[e.None=0]="None",e[e.Some=1]="Some",e[e.Infinite=2]="Infinite"}(ti||(ti={})),function(e){e.Keep="keep",e.Update="update",e.Insert="insert",e.Delete="delete"}(ni||(ni={}));class oi{static create(e,t,n){return 0===t&&n===e.length?e:new oi(e,t,n)}constructor(e,t,n){this.source=e,this.startIndex=t,this.length=n}item(e){return this.source.item(e+this.startIndex)}forEach(e,t){for(let t=0;t=n&&s>=o&&r(e.item(i),t.item(s))===ti.None;)i--,s--,a++;return a}(e,t,o,o,n),i=function(e){const t=[];let n=e.length-1,o=e[n]?.length-1;for(;n>0||o>0;){const r=0===n?ni.Insert:0===o?ni.Delete:e[n][o];switch(t.unshift(r),r){case ni.Keep:case ni.Update:n--,o--;break;case ni.Insert:o--;break;case ni.Delete:n--}}return t}(function(e,t,n){const o=[],r=[],i=e.length,s=t.length;if(0===i&&0===s)return[];for(let e=0;e<=i;e++)(o[e]=Array(s+1))[0]=e,r[e]=Array(s+1);const a=o[0];for(let e=1;e<=s;e++)a[e]=e;for(let a=1;a<=i;a++)for(let i=1;i<=s;i++){const s=n(e.item(a-1),t.item(i-1)),c=o[a-1][i]+1,l=o[a][i-1]+1;let h;switch(s){case ti.None:h=o[a-1][i-1];break;case ti.Some:h=o[a-1][i-1]+1;break;case ti.Infinite:h=Number.MAX_VALUE}h{const t=location.href,n=Be(t,e);if(history.pushState(null,"",e),n)Fe(e);else{let n=Oe(e,t);Ii(e,!0),n||(Pe(),Me())}}))}function Ci(e){ze()||(null==e.state&&Be(bi,location.href)?bi=location.href:Ii(location.href,!1))}function Ei(e){if(ze()||e.defaultPrevented)return;const t=e.target;if(t instanceof HTMLFormElement){if(!function(e){const t=e.getAttribute("data-enhance");return"string"==typeof t&&""===t||"true"===t?.toLowerCase()}(t))return;const n=e.submitter?.getAttribute("formmethod")||t.method;if("dialog"===n)return void console.warn('A form cannot be enhanced when its method is "dialog".');const o=e.submitter?.getAttribute("formtarget")||t.target;if(""!==o&&"_self"!==o)return void console.warn('A form cannot be enhanced when its target is different from the default value "_self".');e.preventDefault();const r=new URL(e.submitter?.getAttribute("formaction")||t.action,document.baseURI),i={method:n},s=new FormData(t),a=e.submitter?.getAttribute("name"),c=e.submitter?.getAttribute("value");a&&c&&s.append(a,c);const l=new URLSearchParams(s).toString();if("get"===i.method)r.search=l,history.pushState(null,"",r.toString());else{const n=e.submitter?.getAttribute("formenctype")||t.enctype;"multipart/form-data"===n?i.body=s:(i.body=l,i.headers={"content-type":n,accept:mi})}Ii(r.toString(),!1,i)}}async function Ii(e,t,n,o,r=!0){wi=!0,yi?.abort(),function(e,t){Re?.(e,t)}(e,t),vi.enhancedNavigationStarted(),yi=new AbortController;const i=yi.signal,s=fetch(e,Object.assign({signal:i,mode:"no-cors",headers:{accept:mi}},n));let a=null;if(await async function(e,t,n){let o;try{if(o=await e,!o.body)return void n(o,"");const t=o.headers.get("ssr-framing");if(!t){const e=await o.text();return void n(o,e)}let r=!0;await o.body.pipeThrough(new TextDecoderStream).pipeThrough(function(e){let t="";return new TransformStream({transform(n,o){if(t+=n,t.indexOf(e,t.length-n.length-e.length)>=0){const n=t.split(e);n.slice(0,-1).forEach((e=>o.enqueue(e))),t=n[n.length-1]}},flush(e){e.enqueue(t)}})}(`\x3c!--${t}--\x3e`)).pipeTo(new WritableStream({write(e){r?(r=!1,n(o,e)):(e=>{const t=document.createRange().createContextualFragment(e);for(;t.firstChild;)document.body.appendChild(t.firstChild)})(e)}}))}catch(e){if("AbortError"===e.name&&t.aborted)return;throw e}}(s,i,((t,i)=>{const s=!n?.method||"get"===n.method,c=t.status>=200&&t.status<300;if("opaque"===t.type){if(s)return void Ri(e);throw new Error("Enhanced navigation does not support making a non-GET request to an endpoint that redirects to an external origin. Avoid enabling enhanced navigation for form posts that may perform external redirections.")}if(c&&"allow"!==t.headers.get("blazor-enhanced-nav")){if(s)return void Ri(e);throw new Error("Enhanced navigation does not support making a non-GET request to a non-Blazor endpoint. Avoid enabling enhanced navigation for forms that post to a non-Blazor endpoint.")}r&&(t.redirected||o)&&((o?"get"===o:s)?history.replaceState(null,"",t.url):t.url!==location.href&&history.pushState(null,"",t.url),e=t.url);const l=t.headers.get("blazor-enhanced-nav-redirect-location");if(r&&l)return void location.replace(l);r&&!t.redirected&&!s&&c&&(Oe(t.url,bi)?location.href!==bi&&history.pushState(null,"",bi):a=`Cannot perform enhanced form submission that changes the URL (except via a redirection), because then back/forward would not work. Either remove this form's 'action' attribute, or change its method to 'get', or do not mark it as enhanced.\nOld URL: ${location.href}\nNew URL: ${t.url}`),r&&(bi=t.url);const h=t.headers.get("content-type");if(h?.startsWith("text/html")&&i){const e=(new DOMParser).parseFromString(i,"text/html");ii(document,e),vi.documentUpdated()}else h?.startsWith("text/")&&i?ki(i):c||i?s?Ri(e):ki(`Error: ${n.method} request to ${e} returned non-HTML content of type ${h||"unspecified"}.`):ki(`Error: ${t.status} ${t.statusText}`)})),!i.aborted){const t=e.indexOf("#");if(t>=0){const n=e.substring(t+1),o=document.getElementById(n);o?.scrollIntoView()}if(wi=!1,vi.enhancedNavigationCompleted(),a)throw new Error(a)}}function ki(e){document.documentElement.textContent=e;const t=document.documentElement.style;t.fontFamily="consolas, monospace",t.whiteSpace="pre-wrap",t.padding="1rem"}function Ri(e){console.warn(`Enhanced navigation failed for destination ${e}. Falling back to full page load.`),history.replaceState(null,"",e+"?"),location.replace(e)}let Ti,Ai=!0;function Di(e,t){Ti=t,e?.disableDomPreservation&&(Ai=!1),customElements.define("blazor-ssr-end",Ni)}class Ni extends HTMLElement{connectedCallback(){const e=this.parentNode;e.parentNode?.removeChild(e),e.childNodes.forEach((e=>{if(e instanceof HTMLTemplateElement){const t=e.getAttribute("blazor-component-id");if(t)"true"!==e.getAttribute("enhanced-nav")&&yi||function(e,t){const n=function(e){const t=`bl:${e}`,n=document.createNodeIterator(document,NodeFilter.SHOW_COMMENT);let o=null;for(;(o=n.nextNode())&&o.textContent!==t;);if(!o)return null;const r=`/bl:${e}`;let i=null;for(;(i=n.nextNode())&&i.textContent!==r;);return i?{startMarker:o,endMarker:i}:null}(e);if(n){const{startMarker:e,endMarker:o}=n;if(Ai)ii({startExclusive:e,endExclusive:o},t);else{const n=o.parentNode,r=new Range;for(r.setStart(e,e.textContent.length),r.setEnd(o,0),r.deleteContents();t.childNodes[0];)n.insertBefore(t.childNodes[0],o)}Ti.documentUpdated()}}(t,e.content);else{const t="true"===e.getAttribute("enhanced");switch(e.getAttribute("type")){case"redirection":xi(e,!0,t);break;case"not-found":xi(e,!1,t&&Ai);break;case"error":ki(e.content.textContent||"Error")}}}}))}}function xi(e,t,n){const o=We(e.content.textContent),r="form-post"===e.getAttribute("from");n&&Ue(o)?Ii(o,!1,void 0,r?"post":"get",t):r?o!==location.href&&location.assign(o):location.replace(o)}class Pi{constructor(e){var t;this._circuitInactivityTimeoutMs=e,this._rootComponentsBySsrComponentId=new Map,this._seenDescriptors=new Set,this._pendingOperationBatches={},this._nextOperationBatchId=1,this._nextSsrComponentId=1,this._didWebAssemblyFailToLoadQuickly=!1,this._isComponentRefreshPending=!1,this.initialComponents=[],t=()=>{this.rootComponentsMayRequireRefresh()},E.push(t)}onAfterRenderBatch(e){e===$n.Server&&this.circuitMayHaveNoRootComponents()}onDocumentUpdated(){this.rootComponentsMayRequireRefresh()}onEnhancedNavigationCompleted(){this.rootComponentsMayRequireRefresh(!0)}setWebAssemblyOptions(e){this._webAssemblyOptions=e}registerComponent(e){if(this._seenDescriptors.has(e))return;"webassembly"===e.type?this.startLoadingWebAssemblyIfNotStarted():"auto"===e.type&&this.startLoadingWebAssemblyIfNotStarted(1);const t=this._nextSsrComponentId++;this._seenDescriptors.add(e),this._rootComponentsBySsrComponentId.set(t,{descriptor:e,ssrComponentId:t})}unregisterComponent(e){this._seenDescriptors.delete(e.descriptor),this._rootComponentsBySsrComponentId.delete(e.ssrComponentId),this.circuitMayHaveNoRootComponents()}async startLoadingWebAssemblyIfNotStarted(e){if(void 0!==Pr)return;Fr=!0;const t=Kr(this._webAssemblyOptions),n=await $r;void 0!==e&&(n.maxParallelDownloads=e),function(e){const t=Mi(e);if(!t)return!1;const n=window.localStorage.getItem(t.key);return t.value===n}(n)||this.onWebAssemblyFailedToLoadQuickly(),await t,function(e){const t=Mi(e);t&&window.localStorage.setItem(t.key,t.value)}(n),this.rootComponentsMayRequireRefresh()}onWebAssemblyFailedToLoadQuickly(){this._didWebAssemblyFailToLoadQuickly||(this._didWebAssemblyFailToLoadQuickly=!0,this.rootComponentsMayRequireRefresh())}startCircutIfNotStarted(){return void 0===tr?or(this):!Qo||Qo.isDisposedOrDisposing()?ir():void 0}async startWebAssemblyIfNotStarted(){this.startLoadingWebAssemblyIfNotStarted(),void 0===Mr&&await Jr(this,this._webAssemblyOptions)}rootComponentsMayRequireRefresh(e=!1){this._isComponentRefreshPending||(this._isComponentRefreshPending=!0,queueMicrotask((()=>{this._isComponentRefreshPending=!1,this.refreshRootComponents(this._rootComponentsBySsrComponentId.values(),e)})))}circuitMayHaveNoRootComponents(){if(this.rendererHasExistingOrPendingComponents($n.Server,"server","auto"))return clearTimeout(this._circuitInactivityTimeoutId),void(this._circuitInactivityTimeoutId=void 0);void 0===this._circuitInactivityTimeoutId&&(this._circuitInactivityTimeoutId=setTimeout((()=>{this.rendererHasExistingOrPendingComponents($n.Server,"server","auto")||(async function(){await(Qo?.dispose())}(),this._circuitInactivityTimeoutId=void 0)}),this._circuitInactivityTimeoutMs))}rendererHasComponents(e){const t=Ne(e);return void 0!==t&&t.getRootComponentCount()>0}rendererHasExistingOrPendingComponents(e,...t){if(this.rendererHasComponents(e))return!0;for(const{descriptor:{type:n},assignedRendererId:o}of this._rootComponentsBySsrComponentId.values()){if(o===e)return!0;if(void 0===o&&-1!==t.indexOf(n))return!0}return!1}refreshRootComponents(e,t=!1){const n=new Map,o=new Set;for(const r of e){t&&void 0!==r.assignedRendererId&&o.add(r.assignedRendererId);const e=this.determinePendingOperation(r);if(!e)continue;const i=r.assignedRendererId;if(!i)throw new Error("Descriptors must be assigned a renderer ID before getting used as root components");let s=n.get(i);s||(s=[],n.set(i,s)),s.push(e)}let r="",i="";if(t)for(const e of o)if(e===$n.Server)r=Dt(document)||"",r&&""!==r&&(n.get($n.Server)||n.set($n.Server,[]));else{if(e!==$n.WebAssembly)throw new Error(`Unexpected renderer ID '${e}' encountered while discovering new state.`);i=Nt(document)||"",i&&""!==i&&(n.get($n.WebAssembly)||n.set($n.WebAssembly,[]))}for(const[e,t]of n){const n={batchId:this._nextOperationBatchId++,operations:t};this._pendingOperationBatches[n.batchId]=n;const o=JSON.stringify(n);e===$n.Server?sr(o,r):this.updateWebAssemblyRootComponents(o,i)}this.circuitMayHaveNoRootComponents()}updateWebAssemblyRootComponents(e,t){Or?(Hr(e),Or=!1):function(e,t){if(!Mr)throw new Error("Blazor WebAssembly has not started.");if(!St._internal.updateRootComponents)throw new Error("Blazor WebAssembly has not initialized.");Br?St._internal.updateRootComponents(e,t):async function(e,t){if(await Mr,!St._internal.updateRootComponents)throw new Error("Blazor WebAssembly has not initialized.");St._internal.updateRootComponents(e,t)}(e,t)}(e,t)}resolveRendererIdForDescriptor(e){switch("auto"===e.type?this.getAutoRenderMode():e.type){case"server":return this.startCircutIfNotStarted(),$n.Server;case"webassembly":return this.startWebAssemblyIfNotStarted(),$n.WebAssembly;case null:return null}}getAutoRenderMode(){return this.rendererHasExistingOrPendingComponents($n.WebAssembly,"webassembly")?"webassembly":this.rendererHasExistingOrPendingComponents($n.Server,"server")?"server":Ur?"webassembly":this._didWebAssemblyFailToLoadQuickly?"server":null}determinePendingOperation(e){if(t=e.descriptor,document.contains(t.start)){if(void 0===e.assignedRendererId){if(wi||"loading"===document.readyState)return null;const t=this.resolveRendererIdForDescriptor(e.descriptor);return null===t?null:R(t)?(_e(e.descriptor.start,!0),e.assignedRendererId=t,e.uniqueIdAtLastUpdate=e.descriptor.uniqueId,{type:"add",ssrComponentId:e.ssrComponentId,marker:Ht(e.descriptor)}):null}return R(e.assignedRendererId)?e.uniqueIdAtLastUpdate===e.descriptor.uniqueId?null:(e.uniqueIdAtLastUpdate=e.descriptor.uniqueId,{type:"update",ssrComponentId:e.ssrComponentId,marker:Ht(e.descriptor)}):null}return e.hasPendingRemoveOperation?null:void 0===e.assignedRendererId?(this.unregisterComponent(e),null):R(e.assignedRendererId)?(_e(e.descriptor.start,!1),e.hasPendingRemoveOperation=!0,{type:"remove",ssrComponentId:e.ssrComponentId}):null;var t}resolveRootComponent(e){const t=this._rootComponentsBySsrComponentId.get(e);if(!t)throw new Error(`Could not resolve a root component with SSR component ID '${e}'.`);return t.descriptor}onAfterUpdateRootComponents(e){const t=this._pendingOperationBatches[e];delete this._pendingOperationBatches[e];for(const e of t.operations)switch(e.type){case"remove":{const t=this._rootComponentsBySsrComponentId.get(e.ssrComponentId);t&&this.unregisterComponent(t);break}}}onComponentReload(e){for(const[n,o]of this._rootComponentsBySsrComponentId.entries())o.assignedRendererId===e&&(o.assignedRendererId=void 0,we(o.descriptor.start,!1),t=o.descriptor.start,ge.add(t));var t;this.rootComponentsMayRequireRefresh()}}function Mi(e){const t=e.resources?.hash,n=e.mainAssemblyName;return t&&n?{key:`blazor-resource-hash:${n}`,value:t}:null}class Li{constructor(){this._eventListeners=new Map}static create(e){const t=new Li;return e.addEventListener=t.addEventListener.bind(t),e.removeEventListener=t.removeEventListener.bind(t),t}addEventListener(e,t){let n=this._eventListeners.get(e);n||(n=new Set,this._eventListeners.set(e,n)),n.add(t)}removeEventListener(e,t){this._eventListeners.get(e)?.delete(t)}dispatchEvent(e,t){const n=this._eventListeners.get(e);if(!n)return;const o={...t,type:e};for(const e of n)e(o)}}let Ui=null,Bi=location.href,Oi=!1;function Fi(){null!==document.activeElement&&document.activeElement!==document.body||document.querySelector("[autofocus]")||Wi()}function $i(){Oe(Bi,location.href)||(Oi=!0),Bi=location.href}function Hi(){Oi&&Wi()}function ji(){Oi=!1}function Wi(){const e=Ui?.getAttribute("selector");e&<.focusBySelector(e)}class zi extends HTMLElement{connectedCallback(){Ui=this}disconnectedCallback(){Ui===this&&(Ui=null)}}let qi,Ji=!1;function Vi(e){if(Ji)throw new Error("Blazor has already started.");Ji=!0,e=e||{},e.logLevel??=Ct.Error,St._internal.hotReloadApplied=()=>{He()&&je(location.href,!0)},qi=new Pi(e?.ssr?.circuitInactivityTimeoutMs??2e3);const t=Li.create(St),n={enhancedNavigationStarted:()=>{t.dispatchEvent("enhancednavigationstart",{})},documentUpdated:()=>{qi.onDocumentUpdated(),t.dispatchEvent("enhancedload",{})},enhancedNavigationCompleted(){qi.onEnhancedNavigationCompleted(),t.dispatchEvent("enhancednavigationend",{})}};return ri=qi,Di(e?.ssr,n),e?.ssr?.disableDomPreservation||(vi=n,document.addEventListener("click",Si),document.addEventListener("submit",Ei),window.addEventListener("popstate",Ci),ke=_i),function(e){customElements.define("blazor-focus-on-navigate",zi),e.addEventListener("enhancednavigationstart",$i),e.addEventListener("enhancednavigationend",Hi),document.addEventListener("focusin",ji),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",Fi,{once:!0}):Fi()}(t),"loading"===document.readyState?document.addEventListener("DOMContentLoaded",Ki.bind(null,e)):Ki(e),Promise.resolve()}function Ki(e){const t=Wo(e?.circuit||{});e.circuit=t,e.webAssembly=e.webAssembly||{};const n=async function(e,t){const n=xt(document,Tt,"initializers");if(!n)return new Xo(!1,t);const o=(JSON.parse(atob(n))??[]).map((e=>({name:e}))),r=new Xo(!1,t);return await r.importInitializersAsync(o,[e]),r}(e,new Et(t.logLevel));!function(e){if(Zo)throw new Error("Circuit options have already been configured.");Go=async function(e){const t=await e;Zo=Wo(t)}(e)}(Xi(n,t)),qr(Xi(n,e.webAssembly)),function(e){const t=di(e),n=function(e){const t=xt(e,At,"options");if(t)return JSON.parse(t)}(e);ri?.setWebAssemblyOptions(n);for(const e of t)ri?.registerComponent(e)}(document),qi.onDocumentUpdated(),async function(e){const t=await e;await t.invokeAfterStartedCallbacks(St)}(n)}async function Xi(e,t){return await e,t}St.start=Vi,window.DotNet=e,document&&document.currentScript&&"false"!==document.currentScript.getAttribute("autostart")&&Vi()}(); diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js.br new file mode 100644 index 0000000..428d559 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js.gz new file mode 100644 index 0000000..7b439b3 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/_framework/blazor.web.js.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css new file mode 100644 index 0000000..d34b003 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css @@ -0,0 +1,66 @@ +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +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; +} + +h1:focus { + outline: none; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid #e50000; +} + +.validation-message { + color: #e50000; +} + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } + +.darker-border-checkbox.form-check-input { + border-color: #929292; +} + +.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder { + color: var(--bs-secondary-color); + text-align: end; +} + +.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder { + text-align: start; +} +.nav-icon { + font-size: 1.1rem; + line-height: 1; + display: inline-flex; + align-items: center; +} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css.br new file mode 100644 index 0000000..918cf8c Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css.gz new file mode 100644 index 0000000..df190af Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/app.css.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/favicon.png b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/favicon.png new file mode 100644 index 0000000..8422b59 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/favicon.png differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css new file mode 100644 index 0000000..3882a81 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css @@ -0,0 +1,4085 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +:root { + --bs-breakpoint-xs: 0; + --bs-breakpoint-sm: 576px; + --bs-breakpoint-md: 768px; + --bs-breakpoint-lg: 992px; + --bs-breakpoint-xl: 1200px; + --bs-breakpoint-xxl: 1400px; +} + +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + box-sizing: border-box; + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} + +.col { + flex: 1 0 0%; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.33333333%; +} + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-3 { + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} + +.col-6 { + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} + +.col-9 { + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} + +.col-12 { + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-left: 8.33333333%; +} + +.offset-2 { + margin-left: 16.66666667%; +} + +.offset-3 { + margin-left: 25%; +} + +.offset-4 { + margin-left: 33.33333333%; +} + +.offset-5 { + margin-left: 41.66666667%; +} + +.offset-6 { + margin-left: 50%; +} + +.offset-7 { + margin-left: 58.33333333%; +} + +.offset-8 { + margin-left: 66.66666667%; +} + +.offset-9 { + margin-left: 75%; +} + +.offset-10 { + margin-left: 83.33333333%; +} + +.offset-11 { + margin-left: 91.66666667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.33333333%; + } + .offset-sm-2 { + margin-left: 16.66666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.33333333%; + } + .offset-sm-5 { + margin-left: 41.66666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.33333333%; + } + .offset-sm-8 { + margin-left: 66.66666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.33333333%; + } + .offset-sm-11 { + margin-left: 91.66666667%; + } + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.33333333%; + } + .offset-md-2 { + margin-left: 16.66666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.33333333%; + } + .offset-md-5 { + margin-left: 41.66666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.33333333%; + } + .offset-md-8 { + margin-left: 66.66666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.33333333%; + } + .offset-md-11 { + margin-left: 91.66666667%; + } + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.33333333%; + } + .offset-lg-2 { + margin-left: 16.66666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.33333333%; + } + .offset-lg-5 { + margin-left: 41.66666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.33333333%; + } + .offset-lg-8 { + margin-left: 66.66666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.33333333%; + } + .offset-lg-11 { + margin-left: 91.66666667%; + } + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.33333333%; + } + .offset-xl-2 { + margin-left: 16.66666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.33333333%; + } + .offset-xl-5 { + margin-left: 41.66666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.33333333%; + } + .offset-xl-8 { + margin-left: 66.66666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.33333333%; + } + .offset-xl-11 { + margin-left: 91.66666667%; + } + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-left: 0; + } + .offset-xxl-1 { + margin-left: 8.33333333%; + } + .offset-xxl-2 { + margin-left: 16.66666667%; + } + .offset-xxl-3 { + margin-left: 25%; + } + .offset-xxl-4 { + margin-left: 33.33333333%; + } + .offset-xxl-5 { + margin-left: 41.66666667%; + } + .offset-xxl-6 { + margin-left: 50%; + } + .offset-xxl-7 { + margin-left: 58.33333333%; + } + .offset-xxl-8 { + margin-left: 66.66666667%; + } + .offset-xxl-9 { + margin-left: 75%; + } + .offset-xxl-10 { + margin-left: 83.33333333%; + } + .offset-xxl-11 { + margin-left: 91.66666667%; + } + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-inline-grid { + display: inline-grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.justify-content-evenly { + justify-content: space-evenly !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +.order-first { + order: -1 !important; +} + +.order-0 { + order: 0 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} + +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} + +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} + +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} + +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; +} + +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.5rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-right: 0 !important; +} + +.me-1 { + margin-right: 0.25rem !important; +} + +.me-2 { + margin-right: 0.5rem !important; +} + +.me-3 { + margin-right: 1rem !important; +} + +.me-4 { + margin-right: 1.5rem !important; +} + +.me-5 { + margin-right: 3rem !important; +} + +.me-auto { + margin-right: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.5rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-left: 0 !important; +} + +.ms-1 { + margin-left: 0.25rem !important; +} + +.ms-2 { + margin-left: 0.5rem !important; +} + +.ms-3 { + margin-left: 1rem !important; +} + +.ms-4 { + margin-left: 1.5rem !important; +} + +.ms-5 { + margin-left: 3rem !important; +} + +.ms-auto { + margin-left: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; +} + +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} + +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} + +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} + +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.5rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pe-0 { + padding-right: 0 !important; +} + +.pe-1 { + padding-right: 0.25rem !important; +} + +.pe-2 { + padding-right: 0.5rem !important; +} + +.pe-3 { + padding-right: 1rem !important; +} + +.pe-4 { + padding-right: 1.5rem !important; +} + +.pe-5 { + padding-right: 3rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.5rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.ps-0 { + padding-left: 0 !important; +} + +.ps-1 { + padding-left: 0.25rem !important; +} + +.ps-2 { + padding-left: 0.5rem !important; +} + +.ps-3 { + padding-left: 1rem !important; +} + +.ps-4 { + padding-left: 1.5rem !important; +} + +.ps-5 { + padding-left: 3rem !important; +} + +@media (min-width: 576px) { + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-inline-grid { + display: inline-grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-right: 0 !important; + } + .me-sm-1 { + margin-right: 0.25rem !important; + } + .me-sm-2 { + margin-right: 0.5rem !important; + } + .me-sm-3 { + margin-right: 1rem !important; + } + .me-sm-4 { + margin-right: 1.5rem !important; + } + .me-sm-5 { + margin-right: 3rem !important; + } + .me-sm-auto { + margin-right: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-left: 0 !important; + } + .ms-sm-1 { + margin-left: 0.25rem !important; + } + .ms-sm-2 { + margin-left: 0.5rem !important; + } + .ms-sm-3 { + margin-left: 1rem !important; + } + .ms-sm-4 { + margin-left: 1.5rem !important; + } + .ms-sm-5 { + margin-left: 3rem !important; + } + .ms-sm-auto { + margin-left: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-right: 0 !important; + } + .pe-sm-1 { + padding-right: 0.25rem !important; + } + .pe-sm-2 { + padding-right: 0.5rem !important; + } + .pe-sm-3 { + padding-right: 1rem !important; + } + .pe-sm-4 { + padding-right: 1.5rem !important; + } + .pe-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-left: 0 !important; + } + .ps-sm-1 { + padding-left: 0.25rem !important; + } + .ps-sm-2 { + padding-left: 0.5rem !important; + } + .ps-sm-3 { + padding-left: 1rem !important; + } + .ps-sm-4 { + padding-left: 1.5rem !important; + } + .ps-sm-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 768px) { + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-inline-grid { + display: inline-grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-right: 0 !important; + } + .me-md-1 { + margin-right: 0.25rem !important; + } + .me-md-2 { + margin-right: 0.5rem !important; + } + .me-md-3 { + margin-right: 1rem !important; + } + .me-md-4 { + margin-right: 1.5rem !important; + } + .me-md-5 { + margin-right: 3rem !important; + } + .me-md-auto { + margin-right: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-left: 0 !important; + } + .ms-md-1 { + margin-left: 0.25rem !important; + } + .ms-md-2 { + margin-left: 0.5rem !important; + } + .ms-md-3 { + margin-left: 1rem !important; + } + .ms-md-4 { + margin-left: 1.5rem !important; + } + .ms-md-5 { + margin-left: 3rem !important; + } + .ms-md-auto { + margin-left: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-right: 0 !important; + } + .pe-md-1 { + padding-right: 0.25rem !important; + } + .pe-md-2 { + padding-right: 0.5rem !important; + } + .pe-md-3 { + padding-right: 1rem !important; + } + .pe-md-4 { + padding-right: 1.5rem !important; + } + .pe-md-5 { + padding-right: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-left: 0 !important; + } + .ps-md-1 { + padding-left: 0.25rem !important; + } + .ps-md-2 { + padding-left: 0.5rem !important; + } + .ps-md-3 { + padding-left: 1rem !important; + } + .ps-md-4 { + padding-left: 1.5rem !important; + } + .ps-md-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 992px) { + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-inline-grid { + display: inline-grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-right: 0 !important; + } + .me-lg-1 { + margin-right: 0.25rem !important; + } + .me-lg-2 { + margin-right: 0.5rem !important; + } + .me-lg-3 { + margin-right: 1rem !important; + } + .me-lg-4 { + margin-right: 1.5rem !important; + } + .me-lg-5 { + margin-right: 3rem !important; + } + .me-lg-auto { + margin-right: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-left: 0 !important; + } + .ms-lg-1 { + margin-left: 0.25rem !important; + } + .ms-lg-2 { + margin-left: 0.5rem !important; + } + .ms-lg-3 { + margin-left: 1rem !important; + } + .ms-lg-4 { + margin-left: 1.5rem !important; + } + .ms-lg-5 { + margin-left: 3rem !important; + } + .ms-lg-auto { + margin-left: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-right: 0 !important; + } + .pe-lg-1 { + padding-right: 0.25rem !important; + } + .pe-lg-2 { + padding-right: 0.5rem !important; + } + .pe-lg-3 { + padding-right: 1rem !important; + } + .pe-lg-4 { + padding-right: 1.5rem !important; + } + .pe-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-left: 0 !important; + } + .ps-lg-1 { + padding-left: 0.25rem !important; + } + .ps-lg-2 { + padding-left: 0.5rem !important; + } + .ps-lg-3 { + padding-left: 1rem !important; + } + .ps-lg-4 { + padding-left: 1.5rem !important; + } + .ps-lg-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 1200px) { + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-inline-grid { + display: inline-grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-right: 0 !important; + } + .me-xl-1 { + margin-right: 0.25rem !important; + } + .me-xl-2 { + margin-right: 0.5rem !important; + } + .me-xl-3 { + margin-right: 1rem !important; + } + .me-xl-4 { + margin-right: 1.5rem !important; + } + .me-xl-5 { + margin-right: 3rem !important; + } + .me-xl-auto { + margin-right: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-left: 0 !important; + } + .ms-xl-1 { + margin-left: 0.25rem !important; + } + .ms-xl-2 { + margin-left: 0.5rem !important; + } + .ms-xl-3 { + margin-left: 1rem !important; + } + .ms-xl-4 { + margin-left: 1.5rem !important; + } + .ms-xl-5 { + margin-left: 3rem !important; + } + .ms-xl-auto { + margin-left: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-right: 0 !important; + } + .pe-xl-1 { + padding-right: 0.25rem !important; + } + .pe-xl-2 { + padding-right: 0.5rem !important; + } + .pe-xl-3 { + padding-right: 1rem !important; + } + .pe-xl-4 { + padding-right: 1.5rem !important; + } + .pe-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-left: 0 !important; + } + .ps-xl-1 { + padding-left: 0.25rem !important; + } + .ps-xl-2 { + padding-left: 0.5rem !important; + } + .ps-xl-3 { + padding-left: 1rem !important; + } + .ps-xl-4 { + padding-left: 1.5rem !important; + } + .ps-xl-5 { + padding-left: 3rem !important; + } +} +@media (min-width: 1400px) { + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-inline-grid { + display: inline-grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-right: 0 !important; + } + .me-xxl-1 { + margin-right: 0.25rem !important; + } + .me-xxl-2 { + margin-right: 0.5rem !important; + } + .me-xxl-3 { + margin-right: 1rem !important; + } + .me-xxl-4 { + margin-right: 1.5rem !important; + } + .me-xxl-5 { + margin-right: 3rem !important; + } + .me-xxl-auto { + margin-right: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-left: 0 !important; + } + .ms-xxl-1 { + margin-left: 0.25rem !important; + } + .ms-xxl-2 { + margin-left: 0.5rem !important; + } + .ms-xxl-3 { + margin-left: 1rem !important; + } + .ms-xxl-4 { + margin-left: 1.5rem !important; + } + .ms-xxl-5 { + margin-left: 3rem !important; + } + .ms-xxl-auto { + margin-left: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-right: 0 !important; + } + .pe-xxl-1 { + padding-right: 0.25rem !important; + } + .pe-xxl-2 { + padding-right: 0.5rem !important; + } + .pe-xxl-3 { + padding-right: 1rem !important; + } + .pe-xxl-4 { + padding-right: 1.5rem !important; + } + .pe-xxl-5 { + padding-right: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-left: 0 !important; + } + .ps-xxl-1 { + padding-left: 0.25rem !important; + } + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + .ps-xxl-3 { + padding-left: 1rem !important; + } + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + .ps-xxl-5 { + padding-left: 3rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-inline-grid { + display: inline-grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} + +/*# sourceMappingURL=bootstrap-grid.css.map */ \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.br new file mode 100644 index 0000000..ab9987f Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.gz new file mode 100644 index 0000000..d4ce0a8 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map new file mode 100644 index 0000000..ce99ec1 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","bootstrap-grid.css","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;EAAA;ACKA;;;;;;;ECHA,qBAAA;EACA,gBAAA;EACA,WAAA;EACA,6CAAA;EACA,4CAAA;EACA,kBAAA;EACA,iBAAA;ACUF;;AC4CI;EH5CE;IACE,gBIkee;EF9drB;AACF;ACsCI;EH5CE;IACE,gBIkee;EFzdrB;AACF;ACiCI;EH5CE;IACE,gBIkee;EFpdrB;AACF;AC4BI;EH5CE;IACE,iBIkee;EF/crB;AACF;ACuBI;EH5CE;IACE,iBIkee;EF1crB;AACF;AGzCA;EAEI,qBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,0BAAA;EAAA,2BAAA;AH+CJ;;AG1CE;ECNA,qBAAA;EACA,gBAAA;EACA,aAAA;EACA,eAAA;EAEA,yCAAA;EACA,6CAAA;EACA,4CAAA;AJmDF;AGjDI;ECGF,sBAAA;EAIA,cAAA;EACA,WAAA;EACA,eAAA;EACA,6CAAA;EACA,4CAAA;EACA,8BAAA;AJ8CF;;AICM;EACE,YAAA;AJER;;AICM;EApCJ,cAAA;EACA,WAAA;AJuCF;;AIzBE;EACE,cAAA;EACA,WAAA;AJ4BJ;;AI9BE;EACE,cAAA;EACA,UAAA;AJiCJ;;AInCE;EACE,cAAA;EACA,mBAAA;AJsCJ;;AIxCE;EACE,cAAA;EACA,UAAA;AJ2CJ;;AI7CE;EACE,cAAA;EACA,UAAA;AJgDJ;;AIlDE;EACE,cAAA;EACA,mBAAA;AJqDJ;;AItBM;EAhDJ,cAAA;EACA,WAAA;AJ0EF;;AIrBU;EAhEN,cAAA;EACA,kBAAA;AJyFJ;;AI1BU;EAhEN,cAAA;EACA,mBAAA;AJ8FJ;;AI/BU;EAhEN,cAAA;EACA,UAAA;AJmGJ;;AIpCU;EAhEN,cAAA;EACA,mBAAA;AJwGJ;;AIzCU;EAhEN,cAAA;EACA,mBAAA;AJ6GJ;;AI9CU;EAhEN,cAAA;EACA,UAAA;AJkHJ;;AInDU;EAhEN,cAAA;EACA,mBAAA;AJuHJ;;AIxDU;EAhEN,cAAA;EACA,mBAAA;AJ4HJ;;AI7DU;EAhEN,cAAA;EACA,UAAA;AJiIJ;;AIlEU;EAhEN,cAAA;EACA,mBAAA;AJsIJ;;AIvEU;EAhEN,cAAA;EACA,mBAAA;AJ2IJ;;AI5EU;EAhEN,cAAA;EACA,WAAA;AJgJJ;;AIzEY;EAxDV,wBAAA;AJqIF;;AI7EY;EAxDV,yBAAA;AJyIF;;AIjFY;EAxDV,gBAAA;AJ6IF;;AIrFY;EAxDV,yBAAA;AJiJF;;AIzFY;EAxDV,yBAAA;AJqJF;;AI7FY;EAxDV,gBAAA;AJyJF;;AIjGY;EAxDV,yBAAA;AJ6JF;;AIrGY;EAxDV,yBAAA;AJiKF;;AIzGY;EAxDV,gBAAA;AJqKF;;AI7GY;EAxDV,yBAAA;AJyKF;;AIjHY;EAxDV,yBAAA;AJ6KF;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;ACzNI;EGUE;IACE,YAAA;EJmNN;EIhNI;IApCJ,cAAA;IACA,WAAA;EJuPA;EIzOA;IACE,cAAA;IACA,WAAA;EJ2OF;EI7OA;IACE,cAAA;IACA,UAAA;EJ+OF;EIjPA;IACE,cAAA;IACA,mBAAA;EJmPF;EIrPA;IACE,cAAA;IACA,UAAA;EJuPF;EIzPA;IACE,cAAA;IACA,UAAA;EJ2PF;EI7PA;IACE,cAAA;IACA,mBAAA;EJ+PF;EIhOI;IAhDJ,cAAA;IACA,WAAA;EJmRA;EI9NQ;IAhEN,cAAA;IACA,kBAAA;EJiSF;EIlOQ;IAhEN,cAAA;IACA,mBAAA;EJqSF;EItOQ;IAhEN,cAAA;IACA,UAAA;EJySF;EI1OQ;IAhEN,cAAA;IACA,mBAAA;EJ6SF;EI9OQ;IAhEN,cAAA;IACA,mBAAA;EJiTF;EIlPQ;IAhEN,cAAA;IACA,UAAA;EJqTF;EItPQ;IAhEN,cAAA;IACA,mBAAA;EJyTF;EI1PQ;IAhEN,cAAA;IACA,mBAAA;EJ6TF;EI9PQ;IAhEN,cAAA;IACA,UAAA;EJiUF;EIlQQ;IAhEN,cAAA;IACA,mBAAA;EJqUF;EItQQ;IAhEN,cAAA;IACA,mBAAA;EJyUF;EI1QQ;IAhEN,cAAA;IACA,WAAA;EJ6UF;EItQU;IAxDV,cAAA;EJiUA;EIzQU;IAxDV,wBAAA;EJoUA;EI5QU;IAxDV,yBAAA;EJuUA;EI/QU;IAxDV,gBAAA;EJ0UA;EIlRU;IAxDV,yBAAA;EJ6UA;EIrRU;IAxDV,yBAAA;EJgVA;EIxRU;IAxDV,gBAAA;EJmVA;EI3RU;IAxDV,yBAAA;EJsVA;EI9RU;IAxDV,yBAAA;EJyVA;EIjSU;IAxDV,gBAAA;EJ4VA;EIpSU;IAxDV,yBAAA;EJ+VA;EIvSU;IAxDV,yBAAA;EJkWA;EI/RM;;IAEE,gBAAA;EJiSR;EI9RM;;IAEE,gBAAA;EJgSR;EIvSM;;IAEE,sBAAA;EJySR;EItSM;;IAEE,sBAAA;EJwSR;EI/SM;;IAEE,qBAAA;EJiTR;EI9SM;;IAEE,qBAAA;EJgTR;EIvTM;;IAEE,mBAAA;EJyTR;EItTM;;IAEE,mBAAA;EJwTR;EI/TM;;IAEE,qBAAA;EJiUR;EI9TM;;IAEE,qBAAA;EJgUR;EIvUM;;IAEE,mBAAA;EJyUR;EItUM;;IAEE,mBAAA;EJwUR;AACF;ACnYI;EGUE;IACE,YAAA;EJ4XN;EIzXI;IApCJ,cAAA;IACA,WAAA;EJgaA;EIlZA;IACE,cAAA;IACA,WAAA;EJoZF;EItZA;IACE,cAAA;IACA,UAAA;EJwZF;EI1ZA;IACE,cAAA;IACA,mBAAA;EJ4ZF;EI9ZA;IACE,cAAA;IACA,UAAA;EJgaF;EIlaA;IACE,cAAA;IACA,UAAA;EJoaF;EItaA;IACE,cAAA;IACA,mBAAA;EJwaF;EIzYI;IAhDJ,cAAA;IACA,WAAA;EJ4bA;EIvYQ;IAhEN,cAAA;IACA,kBAAA;EJ0cF;EI3YQ;IAhEN,cAAA;IACA,mBAAA;EJ8cF;EI/YQ;IAhEN,cAAA;IACA,UAAA;EJkdF;EInZQ;IAhEN,cAAA;IACA,mBAAA;EJsdF;EIvZQ;IAhEN,cAAA;IACA,mBAAA;EJ0dF;EI3ZQ;IAhEN,cAAA;IACA,UAAA;EJ8dF;EI/ZQ;IAhEN,cAAA;IACA,mBAAA;EJkeF;EInaQ;IAhEN,cAAA;IACA,mBAAA;EJseF;EIvaQ;IAhEN,cAAA;IACA,UAAA;EJ0eF;EI3aQ;IAhEN,cAAA;IACA,mBAAA;EJ8eF;EI/aQ;IAhEN,cAAA;IACA,mBAAA;EJkfF;EInbQ;IAhEN,cAAA;IACA,WAAA;EJsfF;EI/aU;IAxDV,cAAA;EJ0eA;EIlbU;IAxDV,wBAAA;EJ6eA;EIrbU;IAxDV,yBAAA;EJgfA;EIxbU;IAxDV,gBAAA;EJmfA;EI3bU;IAxDV,yBAAA;EJsfA;EI9bU;IAxDV,yBAAA;EJyfA;EIjcU;IAxDV,gBAAA;EJ4fA;EIpcU;IAxDV,yBAAA;EJ+fA;EIvcU;IAxDV,yBAAA;EJkgBA;EI1cU;IAxDV,gBAAA;EJqgBA;EI7cU;IAxDV,yBAAA;EJwgBA;EIhdU;IAxDV,yBAAA;EJ2gBA;EIxcM;;IAEE,gBAAA;EJ0cR;EIvcM;;IAEE,gBAAA;EJycR;EIhdM;;IAEE,sBAAA;EJkdR;EI/cM;;IAEE,sBAAA;EJidR;EIxdM;;IAEE,qBAAA;EJ0dR;EIvdM;;IAEE,qBAAA;EJydR;EIheM;;IAEE,mBAAA;EJkeR;EI/dM;;IAEE,mBAAA;EJieR;EIxeM;;IAEE,qBAAA;EJ0eR;EIveM;;IAEE,qBAAA;EJyeR;EIhfM;;IAEE,mBAAA;EJkfR;EI/eM;;IAEE,mBAAA;EJifR;AACF;AC5iBI;EGUE;IACE,YAAA;EJqiBN;EIliBI;IApCJ,cAAA;IACA,WAAA;EJykBA;EI3jBA;IACE,cAAA;IACA,WAAA;EJ6jBF;EI/jBA;IACE,cAAA;IACA,UAAA;EJikBF;EInkBA;IACE,cAAA;IACA,mBAAA;EJqkBF;EIvkBA;IACE,cAAA;IACA,UAAA;EJykBF;EI3kBA;IACE,cAAA;IACA,UAAA;EJ6kBF;EI/kBA;IACE,cAAA;IACA,mBAAA;EJilBF;EIljBI;IAhDJ,cAAA;IACA,WAAA;EJqmBA;EIhjBQ;IAhEN,cAAA;IACA,kBAAA;EJmnBF;EIpjBQ;IAhEN,cAAA;IACA,mBAAA;EJunBF;EIxjBQ;IAhEN,cAAA;IACA,UAAA;EJ2nBF;EI5jBQ;IAhEN,cAAA;IACA,mBAAA;EJ+nBF;EIhkBQ;IAhEN,cAAA;IACA,mBAAA;EJmoBF;EIpkBQ;IAhEN,cAAA;IACA,UAAA;EJuoBF;EIxkBQ;IAhEN,cAAA;IACA,mBAAA;EJ2oBF;EI5kBQ;IAhEN,cAAA;IACA,mBAAA;EJ+oBF;EIhlBQ;IAhEN,cAAA;IACA,UAAA;EJmpBF;EIplBQ;IAhEN,cAAA;IACA,mBAAA;EJupBF;EIxlBQ;IAhEN,cAAA;IACA,mBAAA;EJ2pBF;EI5lBQ;IAhEN,cAAA;IACA,WAAA;EJ+pBF;EIxlBU;IAxDV,cAAA;EJmpBA;EI3lBU;IAxDV,wBAAA;EJspBA;EI9lBU;IAxDV,yBAAA;EJypBA;EIjmBU;IAxDV,gBAAA;EJ4pBA;EIpmBU;IAxDV,yBAAA;EJ+pBA;EIvmBU;IAxDV,yBAAA;EJkqBA;EI1mBU;IAxDV,gBAAA;EJqqBA;EI7mBU;IAxDV,yBAAA;EJwqBA;EIhnBU;IAxDV,yBAAA;EJ2qBA;EInnBU;IAxDV,gBAAA;EJ8qBA;EItnBU;IAxDV,yBAAA;EJirBA;EIznBU;IAxDV,yBAAA;EJorBA;EIjnBM;;IAEE,gBAAA;EJmnBR;EIhnBM;;IAEE,gBAAA;EJknBR;EIznBM;;IAEE,sBAAA;EJ2nBR;EIxnBM;;IAEE,sBAAA;EJ0nBR;EIjoBM;;IAEE,qBAAA;EJmoBR;EIhoBM;;IAEE,qBAAA;EJkoBR;EIzoBM;;IAEE,mBAAA;EJ2oBR;EIxoBM;;IAEE,mBAAA;EJ0oBR;EIjpBM;;IAEE,qBAAA;EJmpBR;EIhpBM;;IAEE,qBAAA;EJkpBR;EIzpBM;;IAEE,mBAAA;EJ2pBR;EIxpBM;;IAEE,mBAAA;EJ0pBR;AACF;ACrtBI;EGUE;IACE,YAAA;EJ8sBN;EI3sBI;IApCJ,cAAA;IACA,WAAA;EJkvBA;EIpuBA;IACE,cAAA;IACA,WAAA;EJsuBF;EIxuBA;IACE,cAAA;IACA,UAAA;EJ0uBF;EI5uBA;IACE,cAAA;IACA,mBAAA;EJ8uBF;EIhvBA;IACE,cAAA;IACA,UAAA;EJkvBF;EIpvBA;IACE,cAAA;IACA,UAAA;EJsvBF;EIxvBA;IACE,cAAA;IACA,mBAAA;EJ0vBF;EI3tBI;IAhDJ,cAAA;IACA,WAAA;EJ8wBA;EIztBQ;IAhEN,cAAA;IACA,kBAAA;EJ4xBF;EI7tBQ;IAhEN,cAAA;IACA,mBAAA;EJgyBF;EIjuBQ;IAhEN,cAAA;IACA,UAAA;EJoyBF;EIruBQ;IAhEN,cAAA;IACA,mBAAA;EJwyBF;EIzuBQ;IAhEN,cAAA;IACA,mBAAA;EJ4yBF;EI7uBQ;IAhEN,cAAA;IACA,UAAA;EJgzBF;EIjvBQ;IAhEN,cAAA;IACA,mBAAA;EJozBF;EIrvBQ;IAhEN,cAAA;IACA,mBAAA;EJwzBF;EIzvBQ;IAhEN,cAAA;IACA,UAAA;EJ4zBF;EI7vBQ;IAhEN,cAAA;IACA,mBAAA;EJg0BF;EIjwBQ;IAhEN,cAAA;IACA,mBAAA;EJo0BF;EIrwBQ;IAhEN,cAAA;IACA,WAAA;EJw0BF;EIjwBU;IAxDV,cAAA;EJ4zBA;EIpwBU;IAxDV,wBAAA;EJ+zBA;EIvwBU;IAxDV,yBAAA;EJk0BA;EI1wBU;IAxDV,gBAAA;EJq0BA;EI7wBU;IAxDV,yBAAA;EJw0BA;EIhxBU;IAxDV,yBAAA;EJ20BA;EInxBU;IAxDV,gBAAA;EJ80BA;EItxBU;IAxDV,yBAAA;EJi1BA;EIzxBU;IAxDV,yBAAA;EJo1BA;EI5xBU;IAxDV,gBAAA;EJu1BA;EI/xBU;IAxDV,yBAAA;EJ01BA;EIlyBU;IAxDV,yBAAA;EJ61BA;EI1xBM;;IAEE,gBAAA;EJ4xBR;EIzxBM;;IAEE,gBAAA;EJ2xBR;EIlyBM;;IAEE,sBAAA;EJoyBR;EIjyBM;;IAEE,sBAAA;EJmyBR;EI1yBM;;IAEE,qBAAA;EJ4yBR;EIzyBM;;IAEE,qBAAA;EJ2yBR;EIlzBM;;IAEE,mBAAA;EJozBR;EIjzBM;;IAEE,mBAAA;EJmzBR;EI1zBM;;IAEE,qBAAA;EJ4zBR;EIzzBM;;IAEE,qBAAA;EJ2zBR;EIl0BM;;IAEE,mBAAA;EJo0BR;EIj0BM;;IAEE,mBAAA;EJm0BR;AACF;AC93BI;EGUE;IACE,YAAA;EJu3BN;EIp3BI;IApCJ,cAAA;IACA,WAAA;EJ25BA;EI74BA;IACE,cAAA;IACA,WAAA;EJ+4BF;EIj5BA;IACE,cAAA;IACA,UAAA;EJm5BF;EIr5BA;IACE,cAAA;IACA,mBAAA;EJu5BF;EIz5BA;IACE,cAAA;IACA,UAAA;EJ25BF;EI75BA;IACE,cAAA;IACA,UAAA;EJ+5BF;EIj6BA;IACE,cAAA;IACA,mBAAA;EJm6BF;EIp4BI;IAhDJ,cAAA;IACA,WAAA;EJu7BA;EIl4BQ;IAhEN,cAAA;IACA,kBAAA;EJq8BF;EIt4BQ;IAhEN,cAAA;IACA,mBAAA;EJy8BF;EI14BQ;IAhEN,cAAA;IACA,UAAA;EJ68BF;EI94BQ;IAhEN,cAAA;IACA,mBAAA;EJi9BF;EIl5BQ;IAhEN,cAAA;IACA,mBAAA;EJq9BF;EIt5BQ;IAhEN,cAAA;IACA,UAAA;EJy9BF;EI15BQ;IAhEN,cAAA;IACA,mBAAA;EJ69BF;EI95BQ;IAhEN,cAAA;IACA,mBAAA;EJi+BF;EIl6BQ;IAhEN,cAAA;IACA,UAAA;EJq+BF;EIt6BQ;IAhEN,cAAA;IACA,mBAAA;EJy+BF;EI16BQ;IAhEN,cAAA;IACA,mBAAA;EJ6+BF;EI96BQ;IAhEN,cAAA;IACA,WAAA;EJi/BF;EI16BU;IAxDV,cAAA;EJq+BA;EI76BU;IAxDV,wBAAA;EJw+BA;EIh7BU;IAxDV,yBAAA;EJ2+BA;EIn7BU;IAxDV,gBAAA;EJ8+BA;EIt7BU;IAxDV,yBAAA;EJi/BA;EIz7BU;IAxDV,yBAAA;EJo/BA;EI57BU;IAxDV,gBAAA;EJu/BA;EI/7BU;IAxDV,yBAAA;EJ0/BA;EIl8BU;IAxDV,yBAAA;EJ6/BA;EIr8BU;IAxDV,gBAAA;EJggCA;EIx8BU;IAxDV,yBAAA;EJmgCA;EI38BU;IAxDV,yBAAA;EJsgCA;EIn8BM;;IAEE,gBAAA;EJq8BR;EIl8BM;;IAEE,gBAAA;EJo8BR;EI38BM;;IAEE,sBAAA;EJ68BR;EI18BM;;IAEE,sBAAA;EJ48BR;EIn9BM;;IAEE,qBAAA;EJq9BR;EIl9BM;;IAEE,qBAAA;EJo9BR;EI39BM;;IAEE,mBAAA;EJ69BR;EI19BM;;IAEE,mBAAA;EJ49BR;EIn+BM;;IAEE,qBAAA;EJq+BR;EIl+BM;;IAEE,qBAAA;EJo+BR;EI3+BM;;IAEE,mBAAA;EJ6+BR;EI1+BM;;IAEE,mBAAA;EJ4+BR;AACF;AKpiCQ;EAOI,0BAAA;ALgiCZ;;AKviCQ;EAOI,gCAAA;ALoiCZ;;AK3iCQ;EAOI,yBAAA;ALwiCZ;;AK/iCQ;EAOI,wBAAA;AL4iCZ;;AKnjCQ;EAOI,+BAAA;ALgjCZ;;AKvjCQ;EAOI,yBAAA;ALojCZ;;AK3jCQ;EAOI,6BAAA;ALwjCZ;;AK/jCQ;EAOI,8BAAA;AL4jCZ;;AKnkCQ;EAOI,wBAAA;ALgkCZ;;AKvkCQ;EAOI,+BAAA;ALokCZ;;AK3kCQ;EAOI,wBAAA;ALwkCZ;;AK/kCQ;EAOI,yBAAA;AL4kCZ;;AKnlCQ;EAOI,8BAAA;ALglCZ;;AKvlCQ;EAOI,iCAAA;ALolCZ;;AK3lCQ;EAOI,sCAAA;ALwlCZ;;AK/lCQ;EAOI,yCAAA;AL4lCZ;;AKnmCQ;EAOI,uBAAA;ALgmCZ;;AKvmCQ;EAOI,uBAAA;ALomCZ;;AK3mCQ;EAOI,yBAAA;ALwmCZ;;AK/mCQ;EAOI,yBAAA;AL4mCZ;;AKnnCQ;EAOI,0BAAA;ALgnCZ;;AKvnCQ;EAOI,4BAAA;ALonCZ;;AK3nCQ;EAOI,kCAAA;ALwnCZ;;AK/nCQ;EAOI,sCAAA;AL4nCZ;;AKnoCQ;EAOI,oCAAA;ALgoCZ;;AKvoCQ;EAOI,kCAAA;ALooCZ;;AK3oCQ;EAOI,yCAAA;ALwoCZ;;AK/oCQ;EAOI,wCAAA;AL4oCZ;;AKnpCQ;EAOI,wCAAA;ALgpCZ;;AKvpCQ;EAOI,kCAAA;ALopCZ;;AK3pCQ;EAOI,gCAAA;ALwpCZ;;AK/pCQ;EAOI,8BAAA;AL4pCZ;;AKnqCQ;EAOI,gCAAA;ALgqCZ;;AKvqCQ;EAOI,+BAAA;ALoqCZ;;AK3qCQ;EAOI,oCAAA;ALwqCZ;;AK/qCQ;EAOI,kCAAA;AL4qCZ;;AKnrCQ;EAOI,gCAAA;ALgrCZ;;AKvrCQ;EAOI,uCAAA;ALorCZ;;AK3rCQ;EAOI,sCAAA;ALwrCZ;;AK/rCQ;EAOI,iCAAA;AL4rCZ;;AKnsCQ;EAOI,2BAAA;ALgsCZ;;AKvsCQ;EAOI,iCAAA;ALosCZ;;AK3sCQ;EAOI,+BAAA;ALwsCZ;;AK/sCQ;EAOI,6BAAA;AL4sCZ;;AKntCQ;EAOI,+BAAA;ALgtCZ;;AKvtCQ;EAOI,8BAAA;ALotCZ;;AK3tCQ;EAOI,oBAAA;ALwtCZ;;AK/tCQ;EAOI,mBAAA;AL4tCZ;;AKnuCQ;EAOI,mBAAA;ALguCZ;;AKvuCQ;EAOI,mBAAA;ALouCZ;;AK3uCQ;EAOI,mBAAA;ALwuCZ;;AK/uCQ;EAOI,mBAAA;AL4uCZ;;AKnvCQ;EAOI,mBAAA;ALgvCZ;;AKvvCQ;EAOI,mBAAA;ALovCZ;;AK3vCQ;EAOI,oBAAA;ALwvCZ;;AK/vCQ;EAOI,0BAAA;AL4vCZ;;AKnwCQ;EAOI,yBAAA;ALgwCZ;;AKvwCQ;EAOI,uBAAA;ALowCZ;;AK3wCQ;EAOI,yBAAA;ALwwCZ;;AK/wCQ;EAOI,uBAAA;AL4wCZ;;AKnxCQ;EAOI,uBAAA;ALgxCZ;;AKvxCQ;EAOI,0BAAA;EAAA,yBAAA;ALqxCZ;;AK5xCQ;EAOI,gCAAA;EAAA,+BAAA;AL0xCZ;;AKjyCQ;EAOI,+BAAA;EAAA,8BAAA;AL+xCZ;;AKtyCQ;EAOI,6BAAA;EAAA,4BAAA;ALoyCZ;;AK3yCQ;EAOI,+BAAA;EAAA,8BAAA;ALyyCZ;;AKhzCQ;EAOI,6BAAA;EAAA,4BAAA;AL8yCZ;;AKrzCQ;EAOI,6BAAA;EAAA,4BAAA;ALmzCZ;;AK1zCQ;EAOI,wBAAA;EAAA,2BAAA;ALwzCZ;;AK/zCQ;EAOI,8BAAA;EAAA,iCAAA;AL6zCZ;;AKp0CQ;EAOI,6BAAA;EAAA,gCAAA;ALk0CZ;;AKz0CQ;EAOI,2BAAA;EAAA,8BAAA;ALu0CZ;;AK90CQ;EAOI,6BAAA;EAAA,gCAAA;AL40CZ;;AKn1CQ;EAOI,2BAAA;EAAA,8BAAA;ALi1CZ;;AKx1CQ;EAOI,2BAAA;EAAA,8BAAA;ALs1CZ;;AK71CQ;EAOI,wBAAA;AL01CZ;;AKj2CQ;EAOI,8BAAA;AL81CZ;;AKr2CQ;EAOI,6BAAA;ALk2CZ;;AKz2CQ;EAOI,2BAAA;ALs2CZ;;AK72CQ;EAOI,6BAAA;AL02CZ;;AKj3CQ;EAOI,2BAAA;AL82CZ;;AKr3CQ;EAOI,2BAAA;ALk3CZ;;AKz3CQ;EAOI,0BAAA;ALs3CZ;;AK73CQ;EAOI,gCAAA;AL03CZ;;AKj4CQ;EAOI,+BAAA;AL83CZ;;AKr4CQ;EAOI,6BAAA;ALk4CZ;;AKz4CQ;EAOI,+BAAA;ALs4CZ;;AK74CQ;EAOI,6BAAA;AL04CZ;;AKj5CQ;EAOI,6BAAA;AL84CZ;;AKr5CQ;EAOI,2BAAA;ALk5CZ;;AKz5CQ;EAOI,iCAAA;ALs5CZ;;AK75CQ;EAOI,gCAAA;AL05CZ;;AKj6CQ;EAOI,8BAAA;AL85CZ;;AKr6CQ;EAOI,gCAAA;ALk6CZ;;AKz6CQ;EAOI,8BAAA;ALs6CZ;;AK76CQ;EAOI,8BAAA;AL06CZ;;AKj7CQ;EAOI,yBAAA;AL86CZ;;AKr7CQ;EAOI,+BAAA;ALk7CZ;;AKz7CQ;EAOI,8BAAA;ALs7CZ;;AK77CQ;EAOI,4BAAA;AL07CZ;;AKj8CQ;EAOI,8BAAA;AL87CZ;;AKr8CQ;EAOI,4BAAA;ALk8CZ;;AKz8CQ;EAOI,4BAAA;ALs8CZ;;AK78CQ;EAOI,qBAAA;AL08CZ;;AKj9CQ;EAOI,2BAAA;AL88CZ;;AKr9CQ;EAOI,0BAAA;ALk9CZ;;AKz9CQ;EAOI,wBAAA;ALs9CZ;;AK79CQ;EAOI,0BAAA;AL09CZ;;AKj+CQ;EAOI,wBAAA;AL89CZ;;AKr+CQ;EAOI,2BAAA;EAAA,0BAAA;ALm+CZ;;AK1+CQ;EAOI,iCAAA;EAAA,gCAAA;ALw+CZ;;AK/+CQ;EAOI,gCAAA;EAAA,+BAAA;AL6+CZ;;AKp/CQ;EAOI,8BAAA;EAAA,6BAAA;ALk/CZ;;AKz/CQ;EAOI,gCAAA;EAAA,+BAAA;ALu/CZ;;AK9/CQ;EAOI,8BAAA;EAAA,6BAAA;AL4/CZ;;AKngDQ;EAOI,yBAAA;EAAA,4BAAA;ALigDZ;;AKxgDQ;EAOI,+BAAA;EAAA,kCAAA;ALsgDZ;;AK7gDQ;EAOI,8BAAA;EAAA,iCAAA;AL2gDZ;;AKlhDQ;EAOI,4BAAA;EAAA,+BAAA;ALghDZ;;AKvhDQ;EAOI,8BAAA;EAAA,iCAAA;ALqhDZ;;AK5hDQ;EAOI,4BAAA;EAAA,+BAAA;AL0hDZ;;AKjiDQ;EAOI,yBAAA;AL8hDZ;;AKriDQ;EAOI,+BAAA;ALkiDZ;;AKziDQ;EAOI,8BAAA;ALsiDZ;;AK7iDQ;EAOI,4BAAA;AL0iDZ;;AKjjDQ;EAOI,8BAAA;AL8iDZ;;AKrjDQ;EAOI,4BAAA;ALkjDZ;;AKzjDQ;EAOI,2BAAA;ALsjDZ;;AK7jDQ;EAOI,iCAAA;AL0jDZ;;AKjkDQ;EAOI,gCAAA;AL8jDZ;;AKrkDQ;EAOI,8BAAA;ALkkDZ;;AKzkDQ;EAOI,gCAAA;ALskDZ;;AK7kDQ;EAOI,8BAAA;AL0kDZ;;AKjlDQ;EAOI,4BAAA;AL8kDZ;;AKrlDQ;EAOI,kCAAA;ALklDZ;;AKzlDQ;EAOI,iCAAA;ALslDZ;;AK7lDQ;EAOI,+BAAA;AL0lDZ;;AKjmDQ;EAOI,iCAAA;AL8lDZ;;AKrmDQ;EAOI,+BAAA;ALkmDZ;;AKzmDQ;EAOI,0BAAA;ALsmDZ;;AK7mDQ;EAOI,gCAAA;AL0mDZ;;AKjnDQ;EAOI,+BAAA;AL8mDZ;;AKrnDQ;EAOI,6BAAA;ALknDZ;;AKznDQ;EAOI,+BAAA;ALsnDZ;;AK7nDQ;EAOI,6BAAA;AL0nDZ;;ACpoDI;EIGI;IAOI,0BAAA;EL+nDV;EKtoDM;IAOI,gCAAA;ELkoDV;EKzoDM;IAOI,yBAAA;ELqoDV;EK5oDM;IAOI,wBAAA;ELwoDV;EK/oDM;IAOI,+BAAA;EL2oDV;EKlpDM;IAOI,yBAAA;EL8oDV;EKrpDM;IAOI,6BAAA;ELipDV;EKxpDM;IAOI,8BAAA;ELopDV;EK3pDM;IAOI,wBAAA;ELupDV;EK9pDM;IAOI,+BAAA;EL0pDV;EKjqDM;IAOI,wBAAA;EL6pDV;EKpqDM;IAOI,yBAAA;ELgqDV;EKvqDM;IAOI,8BAAA;ELmqDV;EK1qDM;IAOI,iCAAA;ELsqDV;EK7qDM;IAOI,sCAAA;ELyqDV;EKhrDM;IAOI,yCAAA;EL4qDV;EKnrDM;IAOI,uBAAA;EL+qDV;EKtrDM;IAOI,uBAAA;ELkrDV;EKzrDM;IAOI,yBAAA;ELqrDV;EK5rDM;IAOI,yBAAA;ELwrDV;EK/rDM;IAOI,0BAAA;EL2rDV;EKlsDM;IAOI,4BAAA;EL8rDV;EKrsDM;IAOI,kCAAA;ELisDV;EKxsDM;IAOI,sCAAA;ELosDV;EK3sDM;IAOI,oCAAA;ELusDV;EK9sDM;IAOI,kCAAA;EL0sDV;EKjtDM;IAOI,yCAAA;EL6sDV;EKptDM;IAOI,wCAAA;ELgtDV;EKvtDM;IAOI,wCAAA;ELmtDV;EK1tDM;IAOI,kCAAA;ELstDV;EK7tDM;IAOI,gCAAA;ELytDV;EKhuDM;IAOI,8BAAA;EL4tDV;EKnuDM;IAOI,gCAAA;EL+tDV;EKtuDM;IAOI,+BAAA;ELkuDV;EKzuDM;IAOI,oCAAA;ELquDV;EK5uDM;IAOI,kCAAA;ELwuDV;EK/uDM;IAOI,gCAAA;EL2uDV;EKlvDM;IAOI,uCAAA;EL8uDV;EKrvDM;IAOI,sCAAA;ELivDV;EKxvDM;IAOI,iCAAA;ELovDV;EK3vDM;IAOI,2BAAA;ELuvDV;EK9vDM;IAOI,iCAAA;EL0vDV;EKjwDM;IAOI,+BAAA;EL6vDV;EKpwDM;IAOI,6BAAA;ELgwDV;EKvwDM;IAOI,+BAAA;ELmwDV;EK1wDM;IAOI,8BAAA;ELswDV;EK7wDM;IAOI,oBAAA;ELywDV;EKhxDM;IAOI,mBAAA;EL4wDV;EKnxDM;IAOI,mBAAA;EL+wDV;EKtxDM;IAOI,mBAAA;ELkxDV;EKzxDM;IAOI,mBAAA;ELqxDV;EK5xDM;IAOI,mBAAA;ELwxDV;EK/xDM;IAOI,mBAAA;EL2xDV;EKlyDM;IAOI,mBAAA;EL8xDV;EKryDM;IAOI,oBAAA;ELiyDV;EKxyDM;IAOI,0BAAA;ELoyDV;EK3yDM;IAOI,yBAAA;ELuyDV;EK9yDM;IAOI,uBAAA;EL0yDV;EKjzDM;IAOI,yBAAA;EL6yDV;EKpzDM;IAOI,uBAAA;ELgzDV;EKvzDM;IAOI,uBAAA;ELmzDV;EK1zDM;IAOI,0BAAA;IAAA,yBAAA;ELuzDV;EK9zDM;IAOI,gCAAA;IAAA,+BAAA;EL2zDV;EKl0DM;IAOI,+BAAA;IAAA,8BAAA;EL+zDV;EKt0DM;IAOI,6BAAA;IAAA,4BAAA;ELm0DV;EK10DM;IAOI,+BAAA;IAAA,8BAAA;ELu0DV;EK90DM;IAOI,6BAAA;IAAA,4BAAA;EL20DV;EKl1DM;IAOI,6BAAA;IAAA,4BAAA;EL+0DV;EKt1DM;IAOI,wBAAA;IAAA,2BAAA;ELm1DV;EK11DM;IAOI,8BAAA;IAAA,iCAAA;ELu1DV;EK91DM;IAOI,6BAAA;IAAA,gCAAA;EL21DV;EKl2DM;IAOI,2BAAA;IAAA,8BAAA;EL+1DV;EKt2DM;IAOI,6BAAA;IAAA,gCAAA;ELm2DV;EK12DM;IAOI,2BAAA;IAAA,8BAAA;ELu2DV;EK92DM;IAOI,2BAAA;IAAA,8BAAA;EL22DV;EKl3DM;IAOI,wBAAA;EL82DV;EKr3DM;IAOI,8BAAA;ELi3DV;EKx3DM;IAOI,6BAAA;ELo3DV;EK33DM;IAOI,2BAAA;ELu3DV;EK93DM;IAOI,6BAAA;EL03DV;EKj4DM;IAOI,2BAAA;EL63DV;EKp4DM;IAOI,2BAAA;ELg4DV;EKv4DM;IAOI,0BAAA;ELm4DV;EK14DM;IAOI,gCAAA;ELs4DV;EK74DM;IAOI,+BAAA;ELy4DV;EKh5DM;IAOI,6BAAA;EL44DV;EKn5DM;IAOI,+BAAA;EL+4DV;EKt5DM;IAOI,6BAAA;ELk5DV;EKz5DM;IAOI,6BAAA;ELq5DV;EK55DM;IAOI,2BAAA;ELw5DV;EK/5DM;IAOI,iCAAA;EL25DV;EKl6DM;IAOI,gCAAA;EL85DV;EKr6DM;IAOI,8BAAA;ELi6DV;EKx6DM;IAOI,gCAAA;ELo6DV;EK36DM;IAOI,8BAAA;ELu6DV;EK96DM;IAOI,8BAAA;EL06DV;EKj7DM;IAOI,yBAAA;EL66DV;EKp7DM;IAOI,+BAAA;ELg7DV;EKv7DM;IAOI,8BAAA;ELm7DV;EK17DM;IAOI,4BAAA;ELs7DV;EK77DM;IAOI,8BAAA;ELy7DV;EKh8DM;IAOI,4BAAA;EL47DV;EKn8DM;IAOI,4BAAA;EL+7DV;EKt8DM;IAOI,qBAAA;ELk8DV;EKz8DM;IAOI,2BAAA;ELq8DV;EK58DM;IAOI,0BAAA;ELw8DV;EK/8DM;IAOI,wBAAA;EL28DV;EKl9DM;IAOI,0BAAA;EL88DV;EKr9DM;IAOI,wBAAA;ELi9DV;EKx9DM;IAOI,2BAAA;IAAA,0BAAA;ELq9DV;EK59DM;IAOI,iCAAA;IAAA,gCAAA;ELy9DV;EKh+DM;IAOI,gCAAA;IAAA,+BAAA;EL69DV;EKp+DM;IAOI,8BAAA;IAAA,6BAAA;ELi+DV;EKx+DM;IAOI,gCAAA;IAAA,+BAAA;ELq+DV;EK5+DM;IAOI,8BAAA;IAAA,6BAAA;ELy+DV;EKh/DM;IAOI,yBAAA;IAAA,4BAAA;EL6+DV;EKp/DM;IAOI,+BAAA;IAAA,kCAAA;ELi/DV;EKx/DM;IAOI,8BAAA;IAAA,iCAAA;ELq/DV;EK5/DM;IAOI,4BAAA;IAAA,+BAAA;ELy/DV;EKhgEM;IAOI,8BAAA;IAAA,iCAAA;EL6/DV;EKpgEM;IAOI,4BAAA;IAAA,+BAAA;ELigEV;EKxgEM;IAOI,yBAAA;ELogEV;EK3gEM;IAOI,+BAAA;ELugEV;EK9gEM;IAOI,8BAAA;EL0gEV;EKjhEM;IAOI,4BAAA;EL6gEV;EKphEM;IAOI,8BAAA;ELghEV;EKvhEM;IAOI,4BAAA;ELmhEV;EK1hEM;IAOI,2BAAA;ELshEV;EK7hEM;IAOI,iCAAA;ELyhEV;EKhiEM;IAOI,gCAAA;EL4hEV;EKniEM;IAOI,8BAAA;EL+hEV;EKtiEM;IAOI,gCAAA;ELkiEV;EKziEM;IAOI,8BAAA;ELqiEV;EK5iEM;IAOI,4BAAA;ELwiEV;EK/iEM;IAOI,kCAAA;EL2iEV;EKljEM;IAOI,iCAAA;EL8iEV;EKrjEM;IAOI,+BAAA;ELijEV;EKxjEM;IAOI,iCAAA;ELojEV;EK3jEM;IAOI,+BAAA;ELujEV;EK9jEM;IAOI,0BAAA;EL0jEV;EKjkEM;IAOI,gCAAA;EL6jEV;EKpkEM;IAOI,+BAAA;ELgkEV;EKvkEM;IAOI,6BAAA;ELmkEV;EK1kEM;IAOI,+BAAA;ELskEV;EK7kEM;IAOI,6BAAA;ELykEV;AACF;ACplEI;EIGI;IAOI,0BAAA;EL8kEV;EKrlEM;IAOI,gCAAA;ELilEV;EKxlEM;IAOI,yBAAA;ELolEV;EK3lEM;IAOI,wBAAA;ELulEV;EK9lEM;IAOI,+BAAA;EL0lEV;EKjmEM;IAOI,yBAAA;EL6lEV;EKpmEM;IAOI,6BAAA;ELgmEV;EKvmEM;IAOI,8BAAA;ELmmEV;EK1mEM;IAOI,wBAAA;ELsmEV;EK7mEM;IAOI,+BAAA;ELymEV;EKhnEM;IAOI,wBAAA;EL4mEV;EKnnEM;IAOI,yBAAA;EL+mEV;EKtnEM;IAOI,8BAAA;ELknEV;EKznEM;IAOI,iCAAA;ELqnEV;EK5nEM;IAOI,sCAAA;ELwnEV;EK/nEM;IAOI,yCAAA;EL2nEV;EKloEM;IAOI,uBAAA;EL8nEV;EKroEM;IAOI,uBAAA;ELioEV;EKxoEM;IAOI,yBAAA;ELooEV;EK3oEM;IAOI,yBAAA;ELuoEV;EK9oEM;IAOI,0BAAA;EL0oEV;EKjpEM;IAOI,4BAAA;EL6oEV;EKppEM;IAOI,kCAAA;ELgpEV;EKvpEM;IAOI,sCAAA;ELmpEV;EK1pEM;IAOI,oCAAA;ELspEV;EK7pEM;IAOI,kCAAA;ELypEV;EKhqEM;IAOI,yCAAA;EL4pEV;EKnqEM;IAOI,wCAAA;EL+pEV;EKtqEM;IAOI,wCAAA;ELkqEV;EKzqEM;IAOI,kCAAA;ELqqEV;EK5qEM;IAOI,gCAAA;ELwqEV;EK/qEM;IAOI,8BAAA;EL2qEV;EKlrEM;IAOI,gCAAA;EL8qEV;EKrrEM;IAOI,+BAAA;ELirEV;EKxrEM;IAOI,oCAAA;ELorEV;EK3rEM;IAOI,kCAAA;ELurEV;EK9rEM;IAOI,gCAAA;EL0rEV;EKjsEM;IAOI,uCAAA;EL6rEV;EKpsEM;IAOI,sCAAA;ELgsEV;EKvsEM;IAOI,iCAAA;ELmsEV;EK1sEM;IAOI,2BAAA;ELssEV;EK7sEM;IAOI,iCAAA;ELysEV;EKhtEM;IAOI,+BAAA;EL4sEV;EKntEM;IAOI,6BAAA;EL+sEV;EKttEM;IAOI,+BAAA;ELktEV;EKztEM;IAOI,8BAAA;ELqtEV;EK5tEM;IAOI,oBAAA;ELwtEV;EK/tEM;IAOI,mBAAA;EL2tEV;EKluEM;IAOI,mBAAA;EL8tEV;EKruEM;IAOI,mBAAA;ELiuEV;EKxuEM;IAOI,mBAAA;ELouEV;EK3uEM;IAOI,mBAAA;ELuuEV;EK9uEM;IAOI,mBAAA;EL0uEV;EKjvEM;IAOI,mBAAA;EL6uEV;EKpvEM;IAOI,oBAAA;ELgvEV;EKvvEM;IAOI,0BAAA;ELmvEV;EK1vEM;IAOI,yBAAA;ELsvEV;EK7vEM;IAOI,uBAAA;ELyvEV;EKhwEM;IAOI,yBAAA;EL4vEV;EKnwEM;IAOI,uBAAA;EL+vEV;EKtwEM;IAOI,uBAAA;ELkwEV;EKzwEM;IAOI,0BAAA;IAAA,yBAAA;ELswEV;EK7wEM;IAOI,gCAAA;IAAA,+BAAA;EL0wEV;EKjxEM;IAOI,+BAAA;IAAA,8BAAA;EL8wEV;EKrxEM;IAOI,6BAAA;IAAA,4BAAA;ELkxEV;EKzxEM;IAOI,+BAAA;IAAA,8BAAA;ELsxEV;EK7xEM;IAOI,6BAAA;IAAA,4BAAA;EL0xEV;EKjyEM;IAOI,6BAAA;IAAA,4BAAA;EL8xEV;EKryEM;IAOI,wBAAA;IAAA,2BAAA;ELkyEV;EKzyEM;IAOI,8BAAA;IAAA,iCAAA;ELsyEV;EK7yEM;IAOI,6BAAA;IAAA,gCAAA;EL0yEV;EKjzEM;IAOI,2BAAA;IAAA,8BAAA;EL8yEV;EKrzEM;IAOI,6BAAA;IAAA,gCAAA;ELkzEV;EKzzEM;IAOI,2BAAA;IAAA,8BAAA;ELszEV;EK7zEM;IAOI,2BAAA;IAAA,8BAAA;EL0zEV;EKj0EM;IAOI,wBAAA;EL6zEV;EKp0EM;IAOI,8BAAA;ELg0EV;EKv0EM;IAOI,6BAAA;ELm0EV;EK10EM;IAOI,2BAAA;ELs0EV;EK70EM;IAOI,6BAAA;ELy0EV;EKh1EM;IAOI,2BAAA;EL40EV;EKn1EM;IAOI,2BAAA;EL+0EV;EKt1EM;IAOI,0BAAA;ELk1EV;EKz1EM;IAOI,gCAAA;ELq1EV;EK51EM;IAOI,+BAAA;ELw1EV;EK/1EM;IAOI,6BAAA;EL21EV;EKl2EM;IAOI,+BAAA;EL81EV;EKr2EM;IAOI,6BAAA;ELi2EV;EKx2EM;IAOI,6BAAA;ELo2EV;EK32EM;IAOI,2BAAA;ELu2EV;EK92EM;IAOI,iCAAA;EL02EV;EKj3EM;IAOI,gCAAA;EL62EV;EKp3EM;IAOI,8BAAA;ELg3EV;EKv3EM;IAOI,gCAAA;ELm3EV;EK13EM;IAOI,8BAAA;ELs3EV;EK73EM;IAOI,8BAAA;ELy3EV;EKh4EM;IAOI,yBAAA;EL43EV;EKn4EM;IAOI,+BAAA;EL+3EV;EKt4EM;IAOI,8BAAA;ELk4EV;EKz4EM;IAOI,4BAAA;ELq4EV;EK54EM;IAOI,8BAAA;ELw4EV;EK/4EM;IAOI,4BAAA;EL24EV;EKl5EM;IAOI,4BAAA;EL84EV;EKr5EM;IAOI,qBAAA;ELi5EV;EKx5EM;IAOI,2BAAA;ELo5EV;EK35EM;IAOI,0BAAA;ELu5EV;EK95EM;IAOI,wBAAA;EL05EV;EKj6EM;IAOI,0BAAA;EL65EV;EKp6EM;IAOI,wBAAA;ELg6EV;EKv6EM;IAOI,2BAAA;IAAA,0BAAA;ELo6EV;EK36EM;IAOI,iCAAA;IAAA,gCAAA;ELw6EV;EK/6EM;IAOI,gCAAA;IAAA,+BAAA;EL46EV;EKn7EM;IAOI,8BAAA;IAAA,6BAAA;ELg7EV;EKv7EM;IAOI,gCAAA;IAAA,+BAAA;ELo7EV;EK37EM;IAOI,8BAAA;IAAA,6BAAA;ELw7EV;EK/7EM;IAOI,yBAAA;IAAA,4BAAA;EL47EV;EKn8EM;IAOI,+BAAA;IAAA,kCAAA;ELg8EV;EKv8EM;IAOI,8BAAA;IAAA,iCAAA;ELo8EV;EK38EM;IAOI,4BAAA;IAAA,+BAAA;ELw8EV;EK/8EM;IAOI,8BAAA;IAAA,iCAAA;EL48EV;EKn9EM;IAOI,4BAAA;IAAA,+BAAA;ELg9EV;EKv9EM;IAOI,yBAAA;ELm9EV;EK19EM;IAOI,+BAAA;ELs9EV;EK79EM;IAOI,8BAAA;ELy9EV;EKh+EM;IAOI,4BAAA;EL49EV;EKn+EM;IAOI,8BAAA;EL+9EV;EKt+EM;IAOI,4BAAA;ELk+EV;EKz+EM;IAOI,2BAAA;ELq+EV;EK5+EM;IAOI,iCAAA;ELw+EV;EK/+EM;IAOI,gCAAA;EL2+EV;EKl/EM;IAOI,8BAAA;EL8+EV;EKr/EM;IAOI,gCAAA;ELi/EV;EKx/EM;IAOI,8BAAA;ELo/EV;EK3/EM;IAOI,4BAAA;ELu/EV;EK9/EM;IAOI,kCAAA;EL0/EV;EKjgFM;IAOI,iCAAA;EL6/EV;EKpgFM;IAOI,+BAAA;ELggFV;EKvgFM;IAOI,iCAAA;ELmgFV;EK1gFM;IAOI,+BAAA;ELsgFV;EK7gFM;IAOI,0BAAA;ELygFV;EKhhFM;IAOI,gCAAA;EL4gFV;EKnhFM;IAOI,+BAAA;EL+gFV;EKthFM;IAOI,6BAAA;ELkhFV;EKzhFM;IAOI,+BAAA;ELqhFV;EK5hFM;IAOI,6BAAA;ELwhFV;AACF;ACniFI;EIGI;IAOI,0BAAA;EL6hFV;EKpiFM;IAOI,gCAAA;ELgiFV;EKviFM;IAOI,yBAAA;ELmiFV;EK1iFM;IAOI,wBAAA;ELsiFV;EK7iFM;IAOI,+BAAA;ELyiFV;EKhjFM;IAOI,yBAAA;EL4iFV;EKnjFM;IAOI,6BAAA;EL+iFV;EKtjFM;IAOI,8BAAA;ELkjFV;EKzjFM;IAOI,wBAAA;ELqjFV;EK5jFM;IAOI,+BAAA;ELwjFV;EK/jFM;IAOI,wBAAA;EL2jFV;EKlkFM;IAOI,yBAAA;EL8jFV;EKrkFM;IAOI,8BAAA;ELikFV;EKxkFM;IAOI,iCAAA;ELokFV;EK3kFM;IAOI,sCAAA;ELukFV;EK9kFM;IAOI,yCAAA;EL0kFV;EKjlFM;IAOI,uBAAA;EL6kFV;EKplFM;IAOI,uBAAA;ELglFV;EKvlFM;IAOI,yBAAA;ELmlFV;EK1lFM;IAOI,yBAAA;ELslFV;EK7lFM;IAOI,0BAAA;ELylFV;EKhmFM;IAOI,4BAAA;EL4lFV;EKnmFM;IAOI,kCAAA;EL+lFV;EKtmFM;IAOI,sCAAA;ELkmFV;EKzmFM;IAOI,oCAAA;ELqmFV;EK5mFM;IAOI,kCAAA;ELwmFV;EK/mFM;IAOI,yCAAA;EL2mFV;EKlnFM;IAOI,wCAAA;EL8mFV;EKrnFM;IAOI,wCAAA;ELinFV;EKxnFM;IAOI,kCAAA;ELonFV;EK3nFM;IAOI,gCAAA;ELunFV;EK9nFM;IAOI,8BAAA;EL0nFV;EKjoFM;IAOI,gCAAA;EL6nFV;EKpoFM;IAOI,+BAAA;ELgoFV;EKvoFM;IAOI,oCAAA;ELmoFV;EK1oFM;IAOI,kCAAA;ELsoFV;EK7oFM;IAOI,gCAAA;ELyoFV;EKhpFM;IAOI,uCAAA;EL4oFV;EKnpFM;IAOI,sCAAA;EL+oFV;EKtpFM;IAOI,iCAAA;ELkpFV;EKzpFM;IAOI,2BAAA;ELqpFV;EK5pFM;IAOI,iCAAA;ELwpFV;EK/pFM;IAOI,+BAAA;EL2pFV;EKlqFM;IAOI,6BAAA;EL8pFV;EKrqFM;IAOI,+BAAA;ELiqFV;EKxqFM;IAOI,8BAAA;ELoqFV;EK3qFM;IAOI,oBAAA;ELuqFV;EK9qFM;IAOI,mBAAA;EL0qFV;EKjrFM;IAOI,mBAAA;EL6qFV;EKprFM;IAOI,mBAAA;ELgrFV;EKvrFM;IAOI,mBAAA;ELmrFV;EK1rFM;IAOI,mBAAA;ELsrFV;EK7rFM;IAOI,mBAAA;ELyrFV;EKhsFM;IAOI,mBAAA;EL4rFV;EKnsFM;IAOI,oBAAA;EL+rFV;EKtsFM;IAOI,0BAAA;ELksFV;EKzsFM;IAOI,yBAAA;ELqsFV;EK5sFM;IAOI,uBAAA;ELwsFV;EK/sFM;IAOI,yBAAA;EL2sFV;EKltFM;IAOI,uBAAA;EL8sFV;EKrtFM;IAOI,uBAAA;ELitFV;EKxtFM;IAOI,0BAAA;IAAA,yBAAA;ELqtFV;EK5tFM;IAOI,gCAAA;IAAA,+BAAA;ELytFV;EKhuFM;IAOI,+BAAA;IAAA,8BAAA;EL6tFV;EKpuFM;IAOI,6BAAA;IAAA,4BAAA;ELiuFV;EKxuFM;IAOI,+BAAA;IAAA,8BAAA;ELquFV;EK5uFM;IAOI,6BAAA;IAAA,4BAAA;ELyuFV;EKhvFM;IAOI,6BAAA;IAAA,4BAAA;EL6uFV;EKpvFM;IAOI,wBAAA;IAAA,2BAAA;ELivFV;EKxvFM;IAOI,8BAAA;IAAA,iCAAA;ELqvFV;EK5vFM;IAOI,6BAAA;IAAA,gCAAA;ELyvFV;EKhwFM;IAOI,2BAAA;IAAA,8BAAA;EL6vFV;EKpwFM;IAOI,6BAAA;IAAA,gCAAA;ELiwFV;EKxwFM;IAOI,2BAAA;IAAA,8BAAA;ELqwFV;EK5wFM;IAOI,2BAAA;IAAA,8BAAA;ELywFV;EKhxFM;IAOI,wBAAA;EL4wFV;EKnxFM;IAOI,8BAAA;EL+wFV;EKtxFM;IAOI,6BAAA;ELkxFV;EKzxFM;IAOI,2BAAA;ELqxFV;EK5xFM;IAOI,6BAAA;ELwxFV;EK/xFM;IAOI,2BAAA;EL2xFV;EKlyFM;IAOI,2BAAA;EL8xFV;EKryFM;IAOI,0BAAA;ELiyFV;EKxyFM;IAOI,gCAAA;ELoyFV;EK3yFM;IAOI,+BAAA;ELuyFV;EK9yFM;IAOI,6BAAA;EL0yFV;EKjzFM;IAOI,+BAAA;EL6yFV;EKpzFM;IAOI,6BAAA;ELgzFV;EKvzFM;IAOI,6BAAA;ELmzFV;EK1zFM;IAOI,2BAAA;ELszFV;EK7zFM;IAOI,iCAAA;ELyzFV;EKh0FM;IAOI,gCAAA;EL4zFV;EKn0FM;IAOI,8BAAA;EL+zFV;EKt0FM;IAOI,gCAAA;ELk0FV;EKz0FM;IAOI,8BAAA;ELq0FV;EK50FM;IAOI,8BAAA;ELw0FV;EK/0FM;IAOI,yBAAA;EL20FV;EKl1FM;IAOI,+BAAA;EL80FV;EKr1FM;IAOI,8BAAA;ELi1FV;EKx1FM;IAOI,4BAAA;ELo1FV;EK31FM;IAOI,8BAAA;ELu1FV;EK91FM;IAOI,4BAAA;EL01FV;EKj2FM;IAOI,4BAAA;EL61FV;EKp2FM;IAOI,qBAAA;ELg2FV;EKv2FM;IAOI,2BAAA;ELm2FV;EK12FM;IAOI,0BAAA;ELs2FV;EK72FM;IAOI,wBAAA;ELy2FV;EKh3FM;IAOI,0BAAA;EL42FV;EKn3FM;IAOI,wBAAA;EL+2FV;EKt3FM;IAOI,2BAAA;IAAA,0BAAA;ELm3FV;EK13FM;IAOI,iCAAA;IAAA,gCAAA;ELu3FV;EK93FM;IAOI,gCAAA;IAAA,+BAAA;EL23FV;EKl4FM;IAOI,8BAAA;IAAA,6BAAA;EL+3FV;EKt4FM;IAOI,gCAAA;IAAA,+BAAA;ELm4FV;EK14FM;IAOI,8BAAA;IAAA,6BAAA;ELu4FV;EK94FM;IAOI,yBAAA;IAAA,4BAAA;EL24FV;EKl5FM;IAOI,+BAAA;IAAA,kCAAA;EL+4FV;EKt5FM;IAOI,8BAAA;IAAA,iCAAA;ELm5FV;EK15FM;IAOI,4BAAA;IAAA,+BAAA;ELu5FV;EK95FM;IAOI,8BAAA;IAAA,iCAAA;EL25FV;EKl6FM;IAOI,4BAAA;IAAA,+BAAA;EL+5FV;EKt6FM;IAOI,yBAAA;ELk6FV;EKz6FM;IAOI,+BAAA;ELq6FV;EK56FM;IAOI,8BAAA;ELw6FV;EK/6FM;IAOI,4BAAA;EL26FV;EKl7FM;IAOI,8BAAA;EL86FV;EKr7FM;IAOI,4BAAA;ELi7FV;EKx7FM;IAOI,2BAAA;ELo7FV;EK37FM;IAOI,iCAAA;ELu7FV;EK97FM;IAOI,gCAAA;EL07FV;EKj8FM;IAOI,8BAAA;EL67FV;EKp8FM;IAOI,gCAAA;ELg8FV;EKv8FM;IAOI,8BAAA;ELm8FV;EK18FM;IAOI,4BAAA;ELs8FV;EK78FM;IAOI,kCAAA;ELy8FV;EKh9FM;IAOI,iCAAA;EL48FV;EKn9FM;IAOI,+BAAA;EL+8FV;EKt9FM;IAOI,iCAAA;ELk9FV;EKz9FM;IAOI,+BAAA;ELq9FV;EK59FM;IAOI,0BAAA;ELw9FV;EK/9FM;IAOI,gCAAA;EL29FV;EKl+FM;IAOI,+BAAA;EL89FV;EKr+FM;IAOI,6BAAA;ELi+FV;EKx+FM;IAOI,+BAAA;ELo+FV;EK3+FM;IAOI,6BAAA;ELu+FV;AACF;ACl/FI;EIGI;IAOI,0BAAA;EL4+FV;EKn/FM;IAOI,gCAAA;EL++FV;EKt/FM;IAOI,yBAAA;ELk/FV;EKz/FM;IAOI,wBAAA;ELq/FV;EK5/FM;IAOI,+BAAA;ELw/FV;EK//FM;IAOI,yBAAA;EL2/FV;EKlgGM;IAOI,6BAAA;EL8/FV;EKrgGM;IAOI,8BAAA;ELigGV;EKxgGM;IAOI,wBAAA;ELogGV;EK3gGM;IAOI,+BAAA;ELugGV;EK9gGM;IAOI,wBAAA;EL0gGV;EKjhGM;IAOI,yBAAA;EL6gGV;EKphGM;IAOI,8BAAA;ELghGV;EKvhGM;IAOI,iCAAA;ELmhGV;EK1hGM;IAOI,sCAAA;ELshGV;EK7hGM;IAOI,yCAAA;ELyhGV;EKhiGM;IAOI,uBAAA;EL4hGV;EKniGM;IAOI,uBAAA;EL+hGV;EKtiGM;IAOI,yBAAA;ELkiGV;EKziGM;IAOI,yBAAA;ELqiGV;EK5iGM;IAOI,0BAAA;ELwiGV;EK/iGM;IAOI,4BAAA;EL2iGV;EKljGM;IAOI,kCAAA;EL8iGV;EKrjGM;IAOI,sCAAA;ELijGV;EKxjGM;IAOI,oCAAA;ELojGV;EK3jGM;IAOI,kCAAA;ELujGV;EK9jGM;IAOI,yCAAA;EL0jGV;EKjkGM;IAOI,wCAAA;EL6jGV;EKpkGM;IAOI,wCAAA;ELgkGV;EKvkGM;IAOI,kCAAA;ELmkGV;EK1kGM;IAOI,gCAAA;ELskGV;EK7kGM;IAOI,8BAAA;ELykGV;EKhlGM;IAOI,gCAAA;EL4kGV;EKnlGM;IAOI,+BAAA;EL+kGV;EKtlGM;IAOI,oCAAA;ELklGV;EKzlGM;IAOI,kCAAA;ELqlGV;EK5lGM;IAOI,gCAAA;ELwlGV;EK/lGM;IAOI,uCAAA;EL2lGV;EKlmGM;IAOI,sCAAA;EL8lGV;EKrmGM;IAOI,iCAAA;ELimGV;EKxmGM;IAOI,2BAAA;ELomGV;EK3mGM;IAOI,iCAAA;ELumGV;EK9mGM;IAOI,+BAAA;EL0mGV;EKjnGM;IAOI,6BAAA;EL6mGV;EKpnGM;IAOI,+BAAA;ELgnGV;EKvnGM;IAOI,8BAAA;ELmnGV;EK1nGM;IAOI,oBAAA;ELsnGV;EK7nGM;IAOI,mBAAA;ELynGV;EKhoGM;IAOI,mBAAA;EL4nGV;EKnoGM;IAOI,mBAAA;EL+nGV;EKtoGM;IAOI,mBAAA;ELkoGV;EKzoGM;IAOI,mBAAA;ELqoGV;EK5oGM;IAOI,mBAAA;ELwoGV;EK/oGM;IAOI,mBAAA;EL2oGV;EKlpGM;IAOI,oBAAA;EL8oGV;EKrpGM;IAOI,0BAAA;ELipGV;EKxpGM;IAOI,yBAAA;ELopGV;EK3pGM;IAOI,uBAAA;ELupGV;EK9pGM;IAOI,yBAAA;EL0pGV;EKjqGM;IAOI,uBAAA;EL6pGV;EKpqGM;IAOI,uBAAA;ELgqGV;EKvqGM;IAOI,0BAAA;IAAA,yBAAA;ELoqGV;EK3qGM;IAOI,gCAAA;IAAA,+BAAA;ELwqGV;EK/qGM;IAOI,+BAAA;IAAA,8BAAA;EL4qGV;EKnrGM;IAOI,6BAAA;IAAA,4BAAA;ELgrGV;EKvrGM;IAOI,+BAAA;IAAA,8BAAA;ELorGV;EK3rGM;IAOI,6BAAA;IAAA,4BAAA;ELwrGV;EK/rGM;IAOI,6BAAA;IAAA,4BAAA;EL4rGV;EKnsGM;IAOI,wBAAA;IAAA,2BAAA;ELgsGV;EKvsGM;IAOI,8BAAA;IAAA,iCAAA;ELosGV;EK3sGM;IAOI,6BAAA;IAAA,gCAAA;ELwsGV;EK/sGM;IAOI,2BAAA;IAAA,8BAAA;EL4sGV;EKntGM;IAOI,6BAAA;IAAA,gCAAA;ELgtGV;EKvtGM;IAOI,2BAAA;IAAA,8BAAA;ELotGV;EK3tGM;IAOI,2BAAA;IAAA,8BAAA;ELwtGV;EK/tGM;IAOI,wBAAA;EL2tGV;EKluGM;IAOI,8BAAA;EL8tGV;EKruGM;IAOI,6BAAA;ELiuGV;EKxuGM;IAOI,2BAAA;ELouGV;EK3uGM;IAOI,6BAAA;ELuuGV;EK9uGM;IAOI,2BAAA;EL0uGV;EKjvGM;IAOI,2BAAA;EL6uGV;EKpvGM;IAOI,0BAAA;ELgvGV;EKvvGM;IAOI,gCAAA;ELmvGV;EK1vGM;IAOI,+BAAA;ELsvGV;EK7vGM;IAOI,6BAAA;ELyvGV;EKhwGM;IAOI,+BAAA;EL4vGV;EKnwGM;IAOI,6BAAA;EL+vGV;EKtwGM;IAOI,6BAAA;ELkwGV;EKzwGM;IAOI,2BAAA;ELqwGV;EK5wGM;IAOI,iCAAA;ELwwGV;EK/wGM;IAOI,gCAAA;EL2wGV;EKlxGM;IAOI,8BAAA;EL8wGV;EKrxGM;IAOI,gCAAA;ELixGV;EKxxGM;IAOI,8BAAA;ELoxGV;EK3xGM;IAOI,8BAAA;ELuxGV;EK9xGM;IAOI,yBAAA;EL0xGV;EKjyGM;IAOI,+BAAA;EL6xGV;EKpyGM;IAOI,8BAAA;ELgyGV;EKvyGM;IAOI,4BAAA;ELmyGV;EK1yGM;IAOI,8BAAA;ELsyGV;EK7yGM;IAOI,4BAAA;ELyyGV;EKhzGM;IAOI,4BAAA;EL4yGV;EKnzGM;IAOI,qBAAA;EL+yGV;EKtzGM;IAOI,2BAAA;ELkzGV;EKzzGM;IAOI,0BAAA;ELqzGV;EK5zGM;IAOI,wBAAA;ELwzGV;EK/zGM;IAOI,0BAAA;EL2zGV;EKl0GM;IAOI,wBAAA;EL8zGV;EKr0GM;IAOI,2BAAA;IAAA,0BAAA;ELk0GV;EKz0GM;IAOI,iCAAA;IAAA,gCAAA;ELs0GV;EK70GM;IAOI,gCAAA;IAAA,+BAAA;EL00GV;EKj1GM;IAOI,8BAAA;IAAA,6BAAA;EL80GV;EKr1GM;IAOI,gCAAA;IAAA,+BAAA;ELk1GV;EKz1GM;IAOI,8BAAA;IAAA,6BAAA;ELs1GV;EK71GM;IAOI,yBAAA;IAAA,4BAAA;EL01GV;EKj2GM;IAOI,+BAAA;IAAA,kCAAA;EL81GV;EKr2GM;IAOI,8BAAA;IAAA,iCAAA;ELk2GV;EKz2GM;IAOI,4BAAA;IAAA,+BAAA;ELs2GV;EK72GM;IAOI,8BAAA;IAAA,iCAAA;EL02GV;EKj3GM;IAOI,4BAAA;IAAA,+BAAA;EL82GV;EKr3GM;IAOI,yBAAA;ELi3GV;EKx3GM;IAOI,+BAAA;ELo3GV;EK33GM;IAOI,8BAAA;ELu3GV;EK93GM;IAOI,4BAAA;EL03GV;EKj4GM;IAOI,8BAAA;EL63GV;EKp4GM;IAOI,4BAAA;ELg4GV;EKv4GM;IAOI,2BAAA;ELm4GV;EK14GM;IAOI,iCAAA;ELs4GV;EK74GM;IAOI,gCAAA;ELy4GV;EKh5GM;IAOI,8BAAA;EL44GV;EKn5GM;IAOI,gCAAA;EL+4GV;EKt5GM;IAOI,8BAAA;ELk5GV;EKz5GM;IAOI,4BAAA;ELq5GV;EK55GM;IAOI,kCAAA;ELw5GV;EK/5GM;IAOI,iCAAA;EL25GV;EKl6GM;IAOI,+BAAA;EL85GV;EKr6GM;IAOI,iCAAA;ELi6GV;EKx6GM;IAOI,+BAAA;ELo6GV;EK36GM;IAOI,0BAAA;ELu6GV;EK96GM;IAOI,gCAAA;EL06GV;EKj7GM;IAOI,+BAAA;EL66GV;EKp7GM;IAOI,6BAAA;ELg7GV;EKv7GM;IAOI,+BAAA;ELm7GV;EK17GM;IAOI,6BAAA;ELs7GV;AACF;ACj8GI;EIGI;IAOI,0BAAA;EL27GV;EKl8GM;IAOI,gCAAA;EL87GV;EKr8GM;IAOI,yBAAA;ELi8GV;EKx8GM;IAOI,wBAAA;ELo8GV;EK38GM;IAOI,+BAAA;ELu8GV;EK98GM;IAOI,yBAAA;EL08GV;EKj9GM;IAOI,6BAAA;EL68GV;EKp9GM;IAOI,8BAAA;ELg9GV;EKv9GM;IAOI,wBAAA;ELm9GV;EK19GM;IAOI,+BAAA;ELs9GV;EK79GM;IAOI,wBAAA;ELy9GV;EKh+GM;IAOI,yBAAA;EL49GV;EKn+GM;IAOI,8BAAA;EL+9GV;EKt+GM;IAOI,iCAAA;ELk+GV;EKz+GM;IAOI,sCAAA;ELq+GV;EK5+GM;IAOI,yCAAA;ELw+GV;EK/+GM;IAOI,uBAAA;EL2+GV;EKl/GM;IAOI,uBAAA;EL8+GV;EKr/GM;IAOI,yBAAA;ELi/GV;EKx/GM;IAOI,yBAAA;ELo/GV;EK3/GM;IAOI,0BAAA;ELu/GV;EK9/GM;IAOI,4BAAA;EL0/GV;EKjgHM;IAOI,kCAAA;EL6/GV;EKpgHM;IAOI,sCAAA;ELggHV;EKvgHM;IAOI,oCAAA;ELmgHV;EK1gHM;IAOI,kCAAA;ELsgHV;EK7gHM;IAOI,yCAAA;ELygHV;EKhhHM;IAOI,wCAAA;EL4gHV;EKnhHM;IAOI,wCAAA;EL+gHV;EKthHM;IAOI,kCAAA;ELkhHV;EKzhHM;IAOI,gCAAA;ELqhHV;EK5hHM;IAOI,8BAAA;ELwhHV;EK/hHM;IAOI,gCAAA;EL2hHV;EKliHM;IAOI,+BAAA;EL8hHV;EKriHM;IAOI,oCAAA;ELiiHV;EKxiHM;IAOI,kCAAA;ELoiHV;EK3iHM;IAOI,gCAAA;ELuiHV;EK9iHM;IAOI,uCAAA;EL0iHV;EKjjHM;IAOI,sCAAA;EL6iHV;EKpjHM;IAOI,iCAAA;ELgjHV;EKvjHM;IAOI,2BAAA;ELmjHV;EK1jHM;IAOI,iCAAA;ELsjHV;EK7jHM;IAOI,+BAAA;ELyjHV;EKhkHM;IAOI,6BAAA;EL4jHV;EKnkHM;IAOI,+BAAA;EL+jHV;EKtkHM;IAOI,8BAAA;ELkkHV;EKzkHM;IAOI,oBAAA;ELqkHV;EK5kHM;IAOI,mBAAA;ELwkHV;EK/kHM;IAOI,mBAAA;EL2kHV;EKllHM;IAOI,mBAAA;EL8kHV;EKrlHM;IAOI,mBAAA;ELilHV;EKxlHM;IAOI,mBAAA;ELolHV;EK3lHM;IAOI,mBAAA;ELulHV;EK9lHM;IAOI,mBAAA;EL0lHV;EKjmHM;IAOI,oBAAA;EL6lHV;EKpmHM;IAOI,0BAAA;ELgmHV;EKvmHM;IAOI,yBAAA;ELmmHV;EK1mHM;IAOI,uBAAA;ELsmHV;EK7mHM;IAOI,yBAAA;ELymHV;EKhnHM;IAOI,uBAAA;EL4mHV;EKnnHM;IAOI,uBAAA;EL+mHV;EKtnHM;IAOI,0BAAA;IAAA,yBAAA;ELmnHV;EK1nHM;IAOI,gCAAA;IAAA,+BAAA;ELunHV;EK9nHM;IAOI,+BAAA;IAAA,8BAAA;EL2nHV;EKloHM;IAOI,6BAAA;IAAA,4BAAA;EL+nHV;EKtoHM;IAOI,+BAAA;IAAA,8BAAA;ELmoHV;EK1oHM;IAOI,6BAAA;IAAA,4BAAA;ELuoHV;EK9oHM;IAOI,6BAAA;IAAA,4BAAA;EL2oHV;EKlpHM;IAOI,wBAAA;IAAA,2BAAA;EL+oHV;EKtpHM;IAOI,8BAAA;IAAA,iCAAA;ELmpHV;EK1pHM;IAOI,6BAAA;IAAA,gCAAA;ELupHV;EK9pHM;IAOI,2BAAA;IAAA,8BAAA;EL2pHV;EKlqHM;IAOI,6BAAA;IAAA,gCAAA;EL+pHV;EKtqHM;IAOI,2BAAA;IAAA,8BAAA;ELmqHV;EK1qHM;IAOI,2BAAA;IAAA,8BAAA;ELuqHV;EK9qHM;IAOI,wBAAA;EL0qHV;EKjrHM;IAOI,8BAAA;EL6qHV;EKprHM;IAOI,6BAAA;ELgrHV;EKvrHM;IAOI,2BAAA;ELmrHV;EK1rHM;IAOI,6BAAA;ELsrHV;EK7rHM;IAOI,2BAAA;ELyrHV;EKhsHM;IAOI,2BAAA;EL4rHV;EKnsHM;IAOI,0BAAA;EL+rHV;EKtsHM;IAOI,gCAAA;ELksHV;EKzsHM;IAOI,+BAAA;ELqsHV;EK5sHM;IAOI,6BAAA;ELwsHV;EK/sHM;IAOI,+BAAA;EL2sHV;EKltHM;IAOI,6BAAA;EL8sHV;EKrtHM;IAOI,6BAAA;ELitHV;EKxtHM;IAOI,2BAAA;ELotHV;EK3tHM;IAOI,iCAAA;ELutHV;EK9tHM;IAOI,gCAAA;EL0tHV;EKjuHM;IAOI,8BAAA;EL6tHV;EKpuHM;IAOI,gCAAA;ELguHV;EKvuHM;IAOI,8BAAA;ELmuHV;EK1uHM;IAOI,8BAAA;ELsuHV;EK7uHM;IAOI,yBAAA;ELyuHV;EKhvHM;IAOI,+BAAA;EL4uHV;EKnvHM;IAOI,8BAAA;EL+uHV;EKtvHM;IAOI,4BAAA;ELkvHV;EKzvHM;IAOI,8BAAA;ELqvHV;EK5vHM;IAOI,4BAAA;ELwvHV;EK/vHM;IAOI,4BAAA;EL2vHV;EKlwHM;IAOI,qBAAA;EL8vHV;EKrwHM;IAOI,2BAAA;ELiwHV;EKxwHM;IAOI,0BAAA;ELowHV;EK3wHM;IAOI,wBAAA;ELuwHV;EK9wHM;IAOI,0BAAA;EL0wHV;EKjxHM;IAOI,wBAAA;EL6wHV;EKpxHM;IAOI,2BAAA;IAAA,0BAAA;ELixHV;EKxxHM;IAOI,iCAAA;IAAA,gCAAA;ELqxHV;EK5xHM;IAOI,gCAAA;IAAA,+BAAA;ELyxHV;EKhyHM;IAOI,8BAAA;IAAA,6BAAA;EL6xHV;EKpyHM;IAOI,gCAAA;IAAA,+BAAA;ELiyHV;EKxyHM;IAOI,8BAAA;IAAA,6BAAA;ELqyHV;EK5yHM;IAOI,yBAAA;IAAA,4BAAA;ELyyHV;EKhzHM;IAOI,+BAAA;IAAA,kCAAA;EL6yHV;EKpzHM;IAOI,8BAAA;IAAA,iCAAA;ELizHV;EKxzHM;IAOI,4BAAA;IAAA,+BAAA;ELqzHV;EK5zHM;IAOI,8BAAA;IAAA,iCAAA;ELyzHV;EKh0HM;IAOI,4BAAA;IAAA,+BAAA;EL6zHV;EKp0HM;IAOI,yBAAA;ELg0HV;EKv0HM;IAOI,+BAAA;ELm0HV;EK10HM;IAOI,8BAAA;ELs0HV;EK70HM;IAOI,4BAAA;ELy0HV;EKh1HM;IAOI,8BAAA;EL40HV;EKn1HM;IAOI,4BAAA;EL+0HV;EKt1HM;IAOI,2BAAA;ELk1HV;EKz1HM;IAOI,iCAAA;ELq1HV;EK51HM;IAOI,gCAAA;ELw1HV;EK/1HM;IAOI,8BAAA;EL21HV;EKl2HM;IAOI,gCAAA;EL81HV;EKr2HM;IAOI,8BAAA;ELi2HV;EKx2HM;IAOI,4BAAA;ELo2HV;EK32HM;IAOI,kCAAA;ELu2HV;EK92HM;IAOI,iCAAA;EL02HV;EKj3HM;IAOI,+BAAA;EL62HV;EKp3HM;IAOI,iCAAA;ELg3HV;EKv3HM;IAOI,+BAAA;ELm3HV;EK13HM;IAOI,0BAAA;ELs3HV;EK73HM;IAOI,gCAAA;ELy3HV;EKh4HM;IAOI,+BAAA;EL43HV;EKn4HM;IAOI,6BAAA;EL+3HV;EKt4HM;IAOI,+BAAA;ELk4HV;EKz4HM;IAOI,6BAAA;ELq4HV;AACF;AMz6HA;ED4BQ;IAOI,0BAAA;EL04HV;EKj5HM;IAOI,gCAAA;EL64HV;EKp5HM;IAOI,yBAAA;ELg5HV;EKv5HM;IAOI,wBAAA;ELm5HV;EK15HM;IAOI,+BAAA;ELs5HV;EK75HM;IAOI,yBAAA;ELy5HV;EKh6HM;IAOI,6BAAA;EL45HV;EKn6HM;IAOI,8BAAA;EL+5HV;EKt6HM;IAOI,wBAAA;ELk6HV;EKz6HM;IAOI,+BAAA;ELq6HV;EK56HM;IAOI,wBAAA;ELw6HV;AACF","file":"bootstrap-grid.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"black\": $black,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-100,\n \"purple-200\": $purple-200,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// scss-docs-start theme-text-variables\n$primary-text-emphasis: shade-color($primary, 60%) !default;\n$secondary-text-emphasis: shade-color($secondary, 60%) !default;\n$success-text-emphasis: shade-color($success, 60%) !default;\n$info-text-emphasis: shade-color($info, 60%) !default;\n$warning-text-emphasis: shade-color($warning, 60%) !default;\n$danger-text-emphasis: shade-color($danger, 60%) !default;\n$light-text-emphasis: $gray-700 !default;\n$dark-text-emphasis: $gray-700 !default;\n// scss-docs-end theme-text-variables\n\n// scss-docs-start theme-bg-subtle-variables\n$primary-bg-subtle: tint-color($primary, 80%) !default;\n$secondary-bg-subtle: tint-color($secondary, 80%) !default;\n$success-bg-subtle: tint-color($success, 80%) !default;\n$info-bg-subtle: tint-color($info, 80%) !default;\n$warning-bg-subtle: tint-color($warning, 80%) !default;\n$danger-bg-subtle: tint-color($danger, 80%) !default;\n$light-bg-subtle: mix($gray-100, $white) !default;\n$dark-bg-subtle: $gray-400 !default;\n// scss-docs-end theme-bg-subtle-variables\n\n// scss-docs-start theme-border-subtle-variables\n$primary-border-subtle: tint-color($primary, 60%) !default;\n$secondary-border-subtle: tint-color($secondary, 60%) !default;\n$success-border-subtle: tint-color($success, 60%) !default;\n$info-border-subtle: tint-color($info, 60%) !default;\n$warning-border-subtle: tint-color($warning, 60%) !default;\n$danger-border-subtle: tint-color($danger, 60%) !default;\n$light-border-subtle: $gray-200 !default;\n$dark-border-subtle: $gray-500 !default;\n// scss-docs-end theme-border-subtle-variables\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-container-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n$enable-dark-mode: true !default;\n$color-mode-type: data !default; // `data` or `media-query`\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`\n$prefix: $variable-prefix !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-text-align: null !default;\n$body-color: $gray-900 !default;\n$body-bg: $white !default;\n\n$body-secondary-color: rgba($body-color, .75) !default;\n$body-secondary-bg: $gray-200 !default;\n\n$body-tertiary-color: rgba($body-color, .5) !default;\n$body-tertiary-bg: $gray-100 !default;\n\n$body-emphasis-color: $black !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Icon links\n// scss-docs-start icon-link-variables\n$icon-link-gap: .375rem !default;\n$icon-link-underline-offset: .25em !default;\n$icon-link-icon-size: 1em !default;\n$icon-link-icon-transition: .2s ease-in-out transform !default;\n$icon-link-icon-transform: translate3d(.25em, 0, 0) !default;\n// scss-docs-end icon-link-variables\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n$border-style: solid !default;\n$border-color: $gray-300 !default;\n$border-color-translucent: rgba($black, .175) !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .375rem !default;\n$border-radius-sm: .25rem !default;\n$border-radius-lg: .5rem !default;\n$border-radius-xl: 1rem !default;\n$border-radius-xxl: 2rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n// fusv-disable\n$border-radius-2xl: $border-radius-xxl !default; // Deprecated in v5.3.0\n// fusv-enable\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start focus-ring-variables\n$focus-ring-width: .25rem !default;\n$focus-ring-opacity: .25 !default;\n$focus-ring-color: rgba($primary, $focus-ring-opacity) !default;\n$focus-ring-blur: 0 !default;\n$focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color !default;\n// scss-docs-end focus-ring-variables\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-medium: 500 !default;\n$font-weight-semibold: 600 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-family: null !default;\n$display-font-style: null !default;\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n// fusv-disable\n$text-muted: var(--#{$prefix}secondary-color) !default; // Deprecated in 5.3.0\n// fusv-enable\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n\n// fusv-disable\n$hr-bg-color: null !default; // Deprecated in v5.2.0\n$hr-height: null !default; // Deprecated in v5.2.0\n// fusv-enable\n\n$hr-border-color: null !default; // Allows for inherited colors\n$hr-border-width: var(--#{$prefix}border-width) !default;\n$hr-opacity: .25 !default;\n\n// scss-docs-start vr-variables\n$vr-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end vr-variables\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-padding: .1875em !default;\n$mark-color: $body-color !default;\n$mark-bg: $yellow-100 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: var(--#{$prefix}emphasis-color) !default;\n$table-bg: var(--#{$prefix}body-bg) !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-hover-bg-factor) !default;\n\n$table-border-factor: .2 !default;\n$table-border-width: var(--#{$prefix}border-width) !default;\n$table-border-color: var(--#{$prefix}border-color) !default;\n\n$table-striped-order: odd !default;\n$table-striped-columns-order: even !default;\n\n$table-group-separator-color: currentcolor !default;\n\n$table-caption-color: var(--#{$prefix}secondary-color) !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: $focus-ring-width !default;\n$input-btn-focus-color-opacity: $focus-ring-opacity !default;\n$input-btn-focus-color: $focus-ring-color !default;\n$input-btn-focus-blur: $focus-ring-blur !default;\n$input-btn-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-color: var(--#{$prefix}body-color) !default;\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: var(--#{$prefix}link-color) !default;\n$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$btn-link-disabled-color: $gray-600 !default;\n$btn-link-focus-shadow-rgb: to-rgb(mix(color-contrast($link-color), $link-color, 15%)) !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: var(--#{$prefix}border-radius) !default;\n$btn-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$btn-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: var(--#{$prefix}body-bg) !default;\n$input-disabled-color: null !default;\n$input-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$input-disabled-border-color: null !default;\n\n$input-color: var(--#{$prefix}body-color) !default;\n$input-border-color: var(--#{$prefix}border-color) !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$input-border-radius: var(--#{$prefix}border-radius) !default;\n$input-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$input-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: var(--#{$prefix}secondary-color) !default;\n$input-plaintext-color: var(--#{$prefix}body-color) !default;\n\n$input-height-border: calc(#{$input-border-width} * 2) !default; // stylelint-disable-line function-disallowed-list\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: var(--#{$prefix}border-width) solid var(--#{$prefix}border-color) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba($black, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: var(--#{$prefix}tertiary-bg) !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $input-disabled-bg !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml,\") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $input-border-radius !default;\n$form-select-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n$form-select-border-radius-sm: $input-border-radius-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n$form-select-border-radius-lg: $input-border-radius-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: var(--#{$prefix}secondary-bg) !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: var(--#{$prefix}secondary-color) !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: var(--#{$prefix}tertiary-bg) !default;\n$form-file-button-hover-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-height: 1.5em !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-label-disabled-color: $gray-600 !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml,\") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-colors\n$form-valid-color: $form-feedback-valid-color !default;\n$form-valid-border-color: $form-feedback-valid-color !default;\n$form-invalid-color: $form-feedback-invalid-color !default;\n$form-invalid-border-color: $form-feedback-invalid-color !default;\n// scss-docs-end form-validation-colors\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": var(--#{$prefix}form-valid-color),\n \"icon\": $form-feedback-icon-valid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}success),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}success-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-valid-border-color),\n ),\n \"invalid\": (\n \"color\": var(--#{$prefix}form-invalid-color),\n \"icon\": $form-feedback-icon-invalid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}danger),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}danger-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-invalid-border-color),\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n$zindex-toast: 1090 !default;\n// scss-docs-end zindex-stack\n\n// scss-docs-start zindex-levels-map\n$zindex-levels: (\n n1: -1,\n 0: 0,\n 1: 1,\n 2: 2,\n 3: 3\n) !default;\n// scss-docs-end zindex-levels-map\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: var(--#{$prefix}link-color) !default;\n$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: var(--#{$prefix}secondary-color) !default;\n$nav-link-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$nav-tabs-border-color: var(--#{$prefix}border-color) !default;\n$nav-tabs-border-width: var(--#{$prefix}border-width) !default;\n$nav-tabs-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-tabs-link-hover-border-color: var(--#{$prefix}secondary-bg) var(--#{$prefix}secondary-bg) $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: var(--#{$prefix}emphasis-color) !default;\n$nav-tabs-link-active-bg: var(--#{$prefix}body-bg) !default;\n$nav-tabs-link-active-border-color: var(--#{$prefix}border-color) var(--#{$prefix}border-color) $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n$nav-underline-gap: 1rem !default;\n$nav-underline-border-width: .125rem !default;\n$nav-underline-link-active-color: var(--#{$prefix}emphasis-color) !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n\n$navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .65) !default;\n$navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .8) !default;\n$navbar-light-active-color: rgba(var(--#{$prefix}emphasis-color-rgb), 1) !default;\n$navbar-light-disabled-color: rgba(var(--#{$prefix}emphasis-color-rgb), .3) !default;\n$navbar-light-icon-color: rgba($body-color, .75) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-light-toggler-border-color: rgba(var(--#{$prefix}emphasis-color-rgb), .15) !default;\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-dark-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-icon-color: $navbar-dark-color !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-dark-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: var(--#{$prefix}body-color) !default;\n$dropdown-bg: var(--#{$prefix}body-bg) !default;\n$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;\n$dropdown-border-radius: var(--#{$prefix}border-radius) !default;\n$dropdown-border-width: var(--#{$prefix}border-width) !default;\n$dropdown-inner-border-radius: calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$dropdown-link-color: var(--#{$prefix}body-color) !default;\n$dropdown-link-hover-color: $dropdown-link-color !default;\n$dropdown-link-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: var(--#{$prefix}tertiary-color) !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding-x: $dropdown-item-padding-x !default;\n$dropdown-header-padding-y: $dropdown-padding-y !default;\n// fusv-disable\n$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0\n// fusv-enable\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-font-size: $font-size-base !default;\n\n$pagination-color: var(--#{$prefix}link-color) !default;\n$pagination-bg: var(--#{$prefix}body-bg) !default;\n$pagination-border-radius: var(--#{$prefix}border-radius) !default;\n$pagination-border-width: var(--#{$prefix}border-width) !default;\n$pagination-margin-start: calc(#{$pagination-border-width} * -1) !default; // stylelint-disable-line function-disallowed-list\n$pagination-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-focus-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-focus-box-shadow: $focus-ring-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$pagination-hover-border-color: var(--#{$prefix}border-color) !default; // Todo in v6: remove this?\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $component-active-bg !default;\n\n$pagination-disabled-color: var(--#{$prefix}secondary-color) !default;\n$pagination-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-disabled-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$pagination-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-title-color: null !default;\n$card-subtitle-color: null !default;\n$card-border-width: var(--#{$prefix}border-width) !default;\n$card-border-color: var(--#{$prefix}border-color-translucent) !default;\n$card-border-radius: var(--#{$prefix}border-radius) !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba(var(--#{$prefix}body-color-rgb), .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: var(--#{$prefix}body-bg) !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: var(--#{$prefix}body-color) !default;\n$accordion-bg: var(--#{$prefix}body-bg) !default;\n$accordion-border-width: var(--#{$prefix}border-width) !default;\n$accordion-border-color: var(--#{$prefix}border-color) !default;\n$accordion-border-radius: var(--#{$prefix}border-radius) !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: var(--#{$prefix}body-color) !default;\n$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: var(--#{$prefix}primary-bg-subtle) !default;\n$accordion-button-active-color: var(--#{$prefix}primary-text-emphasis) !default;\n\n// fusv-disable\n$accordion-button-focus-border-color: $input-focus-border-color !default; // Deprecated in v5.3.3\n// fusv-enable\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $body-color !default;\n$accordion-icon-active-color: $primary-text-emphasis !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml,\") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: var(--#{$prefix}body-bg) !default;\n$tooltip-bg: var(--#{$prefix}emphasis-color) !default;\n$tooltip-border-radius: var(--#{$prefix}border-radius) !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: null !default; // TODO: remove this in v6\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n// fusv-disable\n$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables\n// fusv-enable\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: var(--#{$prefix}body-bg) !default;\n$popover-max-width: 276px !default;\n$popover-border-width: var(--#{$prefix}border-width) !default;\n$popover-border-color: var(--#{$prefix}border-color-translucent) !default;\n$popover-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$popover-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$popover-header-font-size: $font-size-base !default;\n$popover-header-bg: var(--#{$prefix}secondary-bg) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: var(--#{$prefix}body-color) !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n// scss-docs-end popover-variables\n\n// fusv-disable\n// Deprecated in Bootstrap 5.2.0 for CSS variables\n$popover-arrow-color: $popover-bg !default;\n$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;\n// fusv-enable\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-border-width: var(--#{$prefix}border-width) !default;\n$toast-border-color: var(--#{$prefix}border-color-translucent) !default;\n$toast-border-radius: var(--#{$prefix}border-radius) !default;\n$toast-box-shadow: var(--#{$prefix}box-shadow) !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: var(--#{$prefix}secondary-color) !default;\n$toast-header-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-header-border-color: $toast-border-color !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: var(--#{$prefix}border-radius) !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: var(--#{$prefix}body-bg) !default;\n$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;\n$modal-content-border-width: var(--#{$prefix}border-width) !default;\n$modal-content-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: var(--#{$prefix}box-shadow-sm) !default;\n$modal-content-box-shadow-sm-up: var(--#{$prefix}box-shadow) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n\n$modal-header-border-color: var(--#{$prefix}border-color) !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-footer-bg: null !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: var(--#{$prefix}border-radius) !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: var(--#{$prefix}border-width) !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n// fusv-disable\n$alert-bg-scale: -80% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-border-scale: -70% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-color-scale: 40% !default; // Deprecated in v5.2.0, to be removed in v6\n// fusv-enable\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: var(--#{$prefix}secondary-bg) !default;\n$progress-border-radius: var(--#{$prefix}border-radius) !default;\n$progress-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: var(--#{$prefix}body-color) !default;\n$list-group-bg: var(--#{$prefix}body-bg) !default;\n$list-group-border-color: var(--#{$prefix}border-color) !default;\n$list-group-border-width: var(--#{$prefix}border-width) !default;\n$list-group-border-radius: var(--#{$prefix}border-radius) !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n// fusv-disable\n$list-group-item-bg-scale: -80% !default; // Deprecated in v5.3.0\n$list-group-item-color-scale: 40% !default; // Deprecated in v5.3.0\n// fusv-enable\n\n$list-group-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: var(--#{$prefix}secondary-color) !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: var(--#{$prefix}secondary-color) !default;\n$list-group-action-hover-color: var(--#{$prefix}emphasis-color) !default;\n\n$list-group-action-active-color: var(--#{$prefix}body-color) !default;\n$list-group-action-active-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: var(--#{$prefix}body-bg) !default;\n$thumbnail-border-width: var(--#{$prefix}border-width) !default;\n$thumbnail-border-color: var(--#{$prefix}border-color) !default;\n$thumbnail-border-radius: var(--#{$prefix}border-radius) !default;\n$thumbnail-box-shadow: var(--#{$prefix}box-shadow-sm) !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-active-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,\") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,\") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n// scss-docs-end carousel-variables\n\n// scss-docs-start carousel-dark-variables\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-dark-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml,\") !default;\n$btn-close-focus-shadow: $focus-ring-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: var(--#{$prefix}body-bg) !default;\n$offcanvas-color: var(--#{$prefix}body-color) !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .1875rem !default;\n$kbd-padding-x: .375rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: var(--#{$prefix}body-bg) !default;\n$kbd-bg: var(--#{$prefix}body-color) !default;\n$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6\n\n$pre-color: null !default;\n\n@import \"variables-dark\"; // TODO: can be removed safely in v6, only here to avoid breaking changes in v5.3\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map.br new file mode 100644 index 0000000..b1c2f8e Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz new file mode 100644 index 0000000..2ec3ac0 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css new file mode 100644 index 0000000..49b843b --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap-grid.min.css.map */ \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.br new file mode 100644 index 0000000..55c0f1e Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz new file mode 100644 index 0000000..9f26cb0 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map new file mode 100644 index 0000000..a0db8b5 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;ACKA,WCAF,iBAGA,cACA,cACA,cAHA,cADA,eCJE,cAAA,OACA,cAAA,EACA,MAAA,KACA,cAAA,8BACA,aAAA,8BACA,aAAA,KACA,YAAA,KCsDE,yBH5CE,WAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cAAA,cACE,UAAA,OG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QIhBR,MAEI,mBAAA,EAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,OAAA,oBAAA,OAKF,KCNA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KAEA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDEE,OCGF,WAAA,WAIA,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KJ6GR,MI3GU,cAAA,EAGF,KJ6GR,MI3GU,cAAA,EAPF,KJuHR,MIrHU,cAAA,QAGF,KJuHR,MIrHU,cAAA,QAPF,KJiIR,MI/HU,cAAA,OAGF,KJiIR,MI/HU,cAAA,OAPF,KJ2IR,MIzIU,cAAA,KAGF,KJ2IR,MIzIU,cAAA,KAPF,KJqJR,MInJU,cAAA,OAGF,KJqJR,MInJU,cAAA,OAPF,KJ+JR,MI7JU,cAAA,KAGF,KJ+JR,MI7JU,cAAA,KF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJiSN,SI/RQ,cAAA,EAGF,QJgSN,SI9RQ,cAAA,EAPF,QJySN,SIvSQ,cAAA,QAGF,QJwSN,SItSQ,cAAA,QAPF,QJiTN,SI/SQ,cAAA,OAGF,QJgTN,SI9SQ,cAAA,OAPF,QJyTN,SIvTQ,cAAA,KAGF,QJwTN,SItTQ,cAAA,KAPF,QJiUN,SI/TQ,cAAA,OAGF,QJgUN,SI9TQ,cAAA,OAPF,QJyUN,SIvUQ,cAAA,KAGF,QJwUN,SItUQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJ0cN,SIxcQ,cAAA,EAGF,QJycN,SIvcQ,cAAA,EAPF,QJkdN,SIhdQ,cAAA,QAGF,QJidN,SI/cQ,cAAA,QAPF,QJ0dN,SIxdQ,cAAA,OAGF,QJydN,SIvdQ,cAAA,OAPF,QJkeN,SIheQ,cAAA,KAGF,QJieN,SI/dQ,cAAA,KAPF,QJ0eN,SIxeQ,cAAA,OAGF,QJyeN,SIveQ,cAAA,OAPF,QJkfN,SIhfQ,cAAA,KAGF,QJifN,SI/eQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJmnBN,SIjnBQ,cAAA,EAGF,QJknBN,SIhnBQ,cAAA,EAPF,QJ2nBN,SIznBQ,cAAA,QAGF,QJ0nBN,SIxnBQ,cAAA,QAPF,QJmoBN,SIjoBQ,cAAA,OAGF,QJkoBN,SIhoBQ,cAAA,OAPF,QJ2oBN,SIzoBQ,cAAA,KAGF,QJ0oBN,SIxoBQ,cAAA,KAPF,QJmpBN,SIjpBQ,cAAA,OAGF,QJkpBN,SIhpBQ,cAAA,OAPF,QJ2pBN,SIzpBQ,cAAA,KAGF,QJ0pBN,SIxpBQ,cAAA,MF1DN,0BEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QJ4xBN,SI1xBQ,cAAA,EAGF,QJ2xBN,SIzxBQ,cAAA,EAPF,QJoyBN,SIlyBQ,cAAA,QAGF,QJmyBN,SIjyBQ,cAAA,QAPF,QJ4yBN,SI1yBQ,cAAA,OAGF,QJ2yBN,SIzyBQ,cAAA,OAPF,QJozBN,SIlzBQ,cAAA,KAGF,QJmzBN,SIjzBQ,cAAA,KAPF,QJ4zBN,SI1zBQ,cAAA,OAGF,QJ2zBN,SIzzBQ,cAAA,OAPF,QJo0BN,SIl0BQ,cAAA,KAGF,QJm0BN,SIj0BQ,cAAA,MF1DN,0BEUE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SJq8BN,UIn8BQ,cAAA,EAGF,SJo8BN,UIl8BQ,cAAA,EAPF,SJ68BN,UI38BQ,cAAA,QAGF,SJ48BN,UI18BQ,cAAA,QAPF,SJq9BN,UIn9BQ,cAAA,OAGF,SJo9BN,UIl9BQ,cAAA,OAPF,SJ69BN,UI39BQ,cAAA,KAGF,SJ49BN,UI19BQ,cAAA,KAPF,SJq+BN,UIn+BQ,cAAA,OAGF,SJo+BN,UIl+BQ,cAAA,OAPF,SJ6+BN,UI3+BQ,cAAA,KAGF,SJ4+BN,UI1+BQ,cAAA,MCvDF,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,0BGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBHVR,0BGGI,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBCnCZ,aD4BQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br new file mode 100644 index 0000000..a153d01 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz new file mode 100644 index 0000000..02743b4 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css new file mode 100644 index 0000000..1a5d656 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css @@ -0,0 +1,4084 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + width: 100%; + padding-left: calc(var(--bs-gutter-x) * 0.5); + padding-right: calc(var(--bs-gutter-x) * 0.5); + margin-left: auto; + margin-right: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +:root { + --bs-breakpoint-xs: 0; + --bs-breakpoint-sm: 576px; + --bs-breakpoint-md: 768px; + --bs-breakpoint-lg: 992px; + --bs-breakpoint-xl: 1200px; + --bs-breakpoint-xxl: 1400px; +} + +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + box-sizing: border-box; + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-left: calc(var(--bs-gutter-x) * 0.5); + padding-right: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} + +.col { + flex: 1 0 0%; +} + +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} + +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} + +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} + +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.33333333%; +} + +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} + +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} + +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-auto { + flex: 0 0 auto; + width: auto; +} + +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} + +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} + +.col-3 { + flex: 0 0 auto; + width: 25%; +} + +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} + +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} + +.col-6 { + flex: 0 0 auto; + width: 50%; +} + +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} + +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} + +.col-9 { + flex: 0 0 auto; + width: 75%; +} + +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} + +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} + +.col-12 { + flex: 0 0 auto; + width: 100%; +} + +.offset-1 { + margin-right: 8.33333333%; +} + +.offset-2 { + margin-right: 16.66666667%; +} + +.offset-3 { + margin-right: 25%; +} + +.offset-4 { + margin-right: 33.33333333%; +} + +.offset-5 { + margin-right: 41.66666667%; +} + +.offset-6 { + margin-right: 50%; +} + +.offset-7 { + margin-right: 58.33333333%; +} + +.offset-8 { + margin-right: 66.66666667%; +} + +.offset-9 { + margin-right: 75%; +} + +.offset-10 { + margin-right: 83.33333333%; +} + +.offset-11 { + margin-right: 91.66666667%; +} + +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} + +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} + +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} + +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} + +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} + +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} + +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} + +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} + +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} + +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} + +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} + +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} + +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-right: 0; + } + .offset-sm-1 { + margin-right: 8.33333333%; + } + .offset-sm-2 { + margin-right: 16.66666667%; + } + .offset-sm-3 { + margin-right: 25%; + } + .offset-sm-4 { + margin-right: 33.33333333%; + } + .offset-sm-5 { + margin-right: 41.66666667%; + } + .offset-sm-6 { + margin-right: 50%; + } + .offset-sm-7 { + margin-right: 58.33333333%; + } + .offset-sm-8 { + margin-right: 66.66666667%; + } + .offset-sm-9 { + margin-right: 75%; + } + .offset-sm-10 { + margin-right: 83.33333333%; + } + .offset-sm-11 { + margin-right: 91.66666667%; + } + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-right: 0; + } + .offset-md-1 { + margin-right: 8.33333333%; + } + .offset-md-2 { + margin-right: 16.66666667%; + } + .offset-md-3 { + margin-right: 25%; + } + .offset-md-4 { + margin-right: 33.33333333%; + } + .offset-md-5 { + margin-right: 41.66666667%; + } + .offset-md-6 { + margin-right: 50%; + } + .offset-md-7 { + margin-right: 58.33333333%; + } + .offset-md-8 { + margin-right: 66.66666667%; + } + .offset-md-9 { + margin-right: 75%; + } + .offset-md-10 { + margin-right: 83.33333333%; + } + .offset-md-11 { + margin-right: 91.66666667%; + } + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-right: 0; + } + .offset-lg-1 { + margin-right: 8.33333333%; + } + .offset-lg-2 { + margin-right: 16.66666667%; + } + .offset-lg-3 { + margin-right: 25%; + } + .offset-lg-4 { + margin-right: 33.33333333%; + } + .offset-lg-5 { + margin-right: 41.66666667%; + } + .offset-lg-6 { + margin-right: 50%; + } + .offset-lg-7 { + margin-right: 58.33333333%; + } + .offset-lg-8 { + margin-right: 66.66666667%; + } + .offset-lg-9 { + margin-right: 75%; + } + .offset-lg-10 { + margin-right: 83.33333333%; + } + .offset-lg-11 { + margin-right: 91.66666667%; + } + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-right: 0; + } + .offset-xl-1 { + margin-right: 8.33333333%; + } + .offset-xl-2 { + margin-right: 16.66666667%; + } + .offset-xl-3 { + margin-right: 25%; + } + .offset-xl-4 { + margin-right: 33.33333333%; + } + .offset-xl-5 { + margin-right: 41.66666667%; + } + .offset-xl-6 { + margin-right: 50%; + } + .offset-xl-7 { + margin-right: 58.33333333%; + } + .offset-xl-8 { + margin-right: 66.66666667%; + } + .offset-xl-9 { + margin-right: 75%; + } + .offset-xl-10 { + margin-right: 83.33333333%; + } + .offset-xl-11 { + margin-right: 91.66666667%; + } + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.33333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-right: 0; + } + .offset-xxl-1 { + margin-right: 8.33333333%; + } + .offset-xxl-2 { + margin-right: 16.66666667%; + } + .offset-xxl-3 { + margin-right: 25%; + } + .offset-xxl-4 { + margin-right: 33.33333333%; + } + .offset-xxl-5 { + margin-right: 41.66666667%; + } + .offset-xxl-6 { + margin-right: 50%; + } + .offset-xxl-7 { + margin-right: 58.33333333%; + } + .offset-xxl-8 { + margin-right: 66.66666667%; + } + .offset-xxl-9 { + margin-right: 75%; + } + .offset-xxl-10 { + margin-right: 83.33333333%; + } + .offset-xxl-11 { + margin-right: 91.66666667%; + } + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.d-inline { + display: inline !important; +} + +.d-inline-block { + display: inline-block !important; +} + +.d-block { + display: block !important; +} + +.d-grid { + display: grid !important; +} + +.d-inline-grid { + display: inline-grid !important; +} + +.d-table { + display: table !important; +} + +.d-table-row { + display: table-row !important; +} + +.d-table-cell { + display: table-cell !important; +} + +.d-flex { + display: flex !important; +} + +.d-inline-flex { + display: inline-flex !important; +} + +.d-none { + display: none !important; +} + +.flex-fill { + flex: 1 1 auto !important; +} + +.flex-row { + flex-direction: row !important; +} + +.flex-column { + flex-direction: column !important; +} + +.flex-row-reverse { + flex-direction: row-reverse !important; +} + +.flex-column-reverse { + flex-direction: column-reverse !important; +} + +.flex-grow-0 { + flex-grow: 0 !important; +} + +.flex-grow-1 { + flex-grow: 1 !important; +} + +.flex-shrink-0 { + flex-shrink: 0 !important; +} + +.flex-shrink-1 { + flex-shrink: 1 !important; +} + +.flex-wrap { + flex-wrap: wrap !important; +} + +.flex-nowrap { + flex-wrap: nowrap !important; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} + +.justify-content-start { + justify-content: flex-start !important; +} + +.justify-content-end { + justify-content: flex-end !important; +} + +.justify-content-center { + justify-content: center !important; +} + +.justify-content-between { + justify-content: space-between !important; +} + +.justify-content-around { + justify-content: space-around !important; +} + +.justify-content-evenly { + justify-content: space-evenly !important; +} + +.align-items-start { + align-items: flex-start !important; +} + +.align-items-end { + align-items: flex-end !important; +} + +.align-items-center { + align-items: center !important; +} + +.align-items-baseline { + align-items: baseline !important; +} + +.align-items-stretch { + align-items: stretch !important; +} + +.align-content-start { + align-content: flex-start !important; +} + +.align-content-end { + align-content: flex-end !important; +} + +.align-content-center { + align-content: center !important; +} + +.align-content-between { + align-content: space-between !important; +} + +.align-content-around { + align-content: space-around !important; +} + +.align-content-stretch { + align-content: stretch !important; +} + +.align-self-auto { + align-self: auto !important; +} + +.align-self-start { + align-self: flex-start !important; +} + +.align-self-end { + align-self: flex-end !important; +} + +.align-self-center { + align-self: center !important; +} + +.align-self-baseline { + align-self: baseline !important; +} + +.align-self-stretch { + align-self: stretch !important; +} + +.order-first { + order: -1 !important; +} + +.order-0 { + order: 0 !important; +} + +.order-1 { + order: 1 !important; +} + +.order-2 { + order: 2 !important; +} + +.order-3 { + order: 3 !important; +} + +.order-4 { + order: 4 !important; +} + +.order-5 { + order: 5 !important; +} + +.order-last { + order: 6 !important; +} + +.m-0 { + margin: 0 !important; +} + +.m-1 { + margin: 0.25rem !important; +} + +.m-2 { + margin: 0.5rem !important; +} + +.m-3 { + margin: 1rem !important; +} + +.m-4 { + margin: 1.5rem !important; +} + +.m-5 { + margin: 3rem !important; +} + +.m-auto { + margin: auto !important; +} + +.mx-0 { + margin-left: 0 !important; + margin-right: 0 !important; +} + +.mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; +} + +.mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; +} + +.mx-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; +} + +.mx-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; +} + +.mx-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; +} + +.mx-auto { + margin-left: auto !important; + margin-right: auto !important; +} + +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} + +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} + +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} + +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} + +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} + +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} + +.mt-0 { + margin-top: 0 !important; +} + +.mt-1 { + margin-top: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.5rem !important; +} + +.mt-3 { + margin-top: 1rem !important; +} + +.mt-4 { + margin-top: 1.5rem !important; +} + +.mt-5 { + margin-top: 3rem !important; +} + +.mt-auto { + margin-top: auto !important; +} + +.me-0 { + margin-left: 0 !important; +} + +.me-1 { + margin-left: 0.25rem !important; +} + +.me-2 { + margin-left: 0.5rem !important; +} + +.me-3 { + margin-left: 1rem !important; +} + +.me-4 { + margin-left: 1.5rem !important; +} + +.me-5 { + margin-left: 3rem !important; +} + +.me-auto { + margin-left: auto !important; +} + +.mb-0 { + margin-bottom: 0 !important; +} + +.mb-1 { + margin-bottom: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.5rem !important; +} + +.mb-3 { + margin-bottom: 1rem !important; +} + +.mb-4 { + margin-bottom: 1.5rem !important; +} + +.mb-5 { + margin-bottom: 3rem !important; +} + +.mb-auto { + margin-bottom: auto !important; +} + +.ms-0 { + margin-right: 0 !important; +} + +.ms-1 { + margin-right: 0.25rem !important; +} + +.ms-2 { + margin-right: 0.5rem !important; +} + +.ms-3 { + margin-right: 1rem !important; +} + +.ms-4 { + margin-right: 1.5rem !important; +} + +.ms-5 { + margin-right: 3rem !important; +} + +.ms-auto { + margin-right: auto !important; +} + +.p-0 { + padding: 0 !important; +} + +.p-1 { + padding: 0.25rem !important; +} + +.p-2 { + padding: 0.5rem !important; +} + +.p-3 { + padding: 1rem !important; +} + +.p-4 { + padding: 1.5rem !important; +} + +.p-5 { + padding: 3rem !important; +} + +.px-0 { + padding-left: 0 !important; + padding-right: 0 !important; +} + +.px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; +} + +.px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; +} + +.px-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; +} + +.px-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; +} + +.px-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; +} + +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} + +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} + +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} + +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} + +.pt-0 { + padding-top: 0 !important; +} + +.pt-1 { + padding-top: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.5rem !important; +} + +.pt-3 { + padding-top: 1rem !important; +} + +.pt-4 { + padding-top: 1.5rem !important; +} + +.pt-5 { + padding-top: 3rem !important; +} + +.pe-0 { + padding-left: 0 !important; +} + +.pe-1 { + padding-left: 0.25rem !important; +} + +.pe-2 { + padding-left: 0.5rem !important; +} + +.pe-3 { + padding-left: 1rem !important; +} + +.pe-4 { + padding-left: 1.5rem !important; +} + +.pe-5 { + padding-left: 3rem !important; +} + +.pb-0 { + padding-bottom: 0 !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 1rem !important; +} + +.pb-4 { + padding-bottom: 1.5rem !important; +} + +.pb-5 { + padding-bottom: 3rem !important; +} + +.ps-0 { + padding-right: 0 !important; +} + +.ps-1 { + padding-right: 0.25rem !important; +} + +.ps-2 { + padding-right: 0.5rem !important; +} + +.ps-3 { + padding-right: 1rem !important; +} + +.ps-4 { + padding-right: 1.5rem !important; +} + +.ps-5 { + padding-right: 3rem !important; +} + +@media (min-width: 576px) { + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-inline-grid { + display: inline-grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-sm-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-sm-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-sm-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-sm-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-sm-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-sm-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-left: 0 !important; + } + .me-sm-1 { + margin-left: 0.25rem !important; + } + .me-sm-2 { + margin-left: 0.5rem !important; + } + .me-sm-3 { + margin-left: 1rem !important; + } + .me-sm-4 { + margin-left: 1.5rem !important; + } + .me-sm-5 { + margin-left: 3rem !important; + } + .me-sm-auto { + margin-left: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-right: 0 !important; + } + .ms-sm-1 { + margin-right: 0.25rem !important; + } + .ms-sm-2 { + margin-right: 0.5rem !important; + } + .ms-sm-3 { + margin-right: 1rem !important; + } + .ms-sm-4 { + margin-right: 1.5rem !important; + } + .ms-sm-5 { + margin-right: 3rem !important; + } + .ms-sm-auto { + margin-right: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-sm-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-sm-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-sm-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-sm-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-sm-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-left: 0 !important; + } + .pe-sm-1 { + padding-left: 0.25rem !important; + } + .pe-sm-2 { + padding-left: 0.5rem !important; + } + .pe-sm-3 { + padding-left: 1rem !important; + } + .pe-sm-4 { + padding-left: 1.5rem !important; + } + .pe-sm-5 { + padding-left: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-right: 0 !important; + } + .ps-sm-1 { + padding-right: 0.25rem !important; + } + .ps-sm-2 { + padding-right: 0.5rem !important; + } + .ps-sm-3 { + padding-right: 1rem !important; + } + .ps-sm-4 { + padding-right: 1.5rem !important; + } + .ps-sm-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 768px) { + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-inline-grid { + display: inline-grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-md-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-md-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-md-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-md-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-md-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-md-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-left: 0 !important; + } + .me-md-1 { + margin-left: 0.25rem !important; + } + .me-md-2 { + margin-left: 0.5rem !important; + } + .me-md-3 { + margin-left: 1rem !important; + } + .me-md-4 { + margin-left: 1.5rem !important; + } + .me-md-5 { + margin-left: 3rem !important; + } + .me-md-auto { + margin-left: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-right: 0 !important; + } + .ms-md-1 { + margin-right: 0.25rem !important; + } + .ms-md-2 { + margin-right: 0.5rem !important; + } + .ms-md-3 { + margin-right: 1rem !important; + } + .ms-md-4 { + margin-right: 1.5rem !important; + } + .ms-md-5 { + margin-right: 3rem !important; + } + .ms-md-auto { + margin-right: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-md-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-md-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-md-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-md-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-md-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-left: 0 !important; + } + .pe-md-1 { + padding-left: 0.25rem !important; + } + .pe-md-2 { + padding-left: 0.5rem !important; + } + .pe-md-3 { + padding-left: 1rem !important; + } + .pe-md-4 { + padding-left: 1.5rem !important; + } + .pe-md-5 { + padding-left: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-right: 0 !important; + } + .ps-md-1 { + padding-right: 0.25rem !important; + } + .ps-md-2 { + padding-right: 0.5rem !important; + } + .ps-md-3 { + padding-right: 1rem !important; + } + .ps-md-4 { + padding-right: 1.5rem !important; + } + .ps-md-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 992px) { + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-inline-grid { + display: inline-grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-lg-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-lg-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-lg-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-lg-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-lg-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-lg-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-left: 0 !important; + } + .me-lg-1 { + margin-left: 0.25rem !important; + } + .me-lg-2 { + margin-left: 0.5rem !important; + } + .me-lg-3 { + margin-left: 1rem !important; + } + .me-lg-4 { + margin-left: 1.5rem !important; + } + .me-lg-5 { + margin-left: 3rem !important; + } + .me-lg-auto { + margin-left: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-right: 0 !important; + } + .ms-lg-1 { + margin-right: 0.25rem !important; + } + .ms-lg-2 { + margin-right: 0.5rem !important; + } + .ms-lg-3 { + margin-right: 1rem !important; + } + .ms-lg-4 { + margin-right: 1.5rem !important; + } + .ms-lg-5 { + margin-right: 3rem !important; + } + .ms-lg-auto { + margin-right: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-lg-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-lg-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-lg-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-lg-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-lg-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-left: 0 !important; + } + .pe-lg-1 { + padding-left: 0.25rem !important; + } + .pe-lg-2 { + padding-left: 0.5rem !important; + } + .pe-lg-3 { + padding-left: 1rem !important; + } + .pe-lg-4 { + padding-left: 1.5rem !important; + } + .pe-lg-5 { + padding-left: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-right: 0 !important; + } + .ps-lg-1 { + padding-right: 0.25rem !important; + } + .ps-lg-2 { + padding-right: 0.5rem !important; + } + .ps-lg-3 { + padding-right: 1rem !important; + } + .ps-lg-4 { + padding-right: 1.5rem !important; + } + .ps-lg-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 1200px) { + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-inline-grid { + display: inline-grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xl-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-xl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-left: 0 !important; + } + .me-xl-1 { + margin-left: 0.25rem !important; + } + .me-xl-2 { + margin-left: 0.5rem !important; + } + .me-xl-3 { + margin-left: 1rem !important; + } + .me-xl-4 { + margin-left: 1.5rem !important; + } + .me-xl-5 { + margin-left: 3rem !important; + } + .me-xl-auto { + margin-left: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-right: 0 !important; + } + .ms-xl-1 { + margin-right: 0.25rem !important; + } + .ms-xl-2 { + margin-right: 0.5rem !important; + } + .ms-xl-3 { + margin-right: 1rem !important; + } + .ms-xl-4 { + margin-right: 1.5rem !important; + } + .ms-xl-5 { + margin-right: 3rem !important; + } + .ms-xl-auto { + margin-right: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xl-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-xl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-left: 0 !important; + } + .pe-xl-1 { + padding-left: 0.25rem !important; + } + .pe-xl-2 { + padding-left: 0.5rem !important; + } + .pe-xl-3 { + padding-left: 1rem !important; + } + .pe-xl-4 { + padding-left: 1.5rem !important; + } + .pe-xl-5 { + padding-left: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-right: 0 !important; + } + .ps-xl-1 { + padding-right: 0.25rem !important; + } + .ps-xl-2 { + padding-right: 0.5rem !important; + } + .ps-xl-3 { + padding-right: 1rem !important; + } + .ps-xl-4 { + padding-right: 1.5rem !important; + } + .ps-xl-5 { + padding-right: 3rem !important; + } +} +@media (min-width: 1400px) { + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-inline-grid { + display: inline-grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-left: 0 !important; + margin-right: 0 !important; + } + .mx-xxl-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; + } + .mx-xxl-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; + } + .mx-xxl-3 { + margin-left: 1rem !important; + margin-right: 1rem !important; + } + .mx-xxl-4 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; + } + .mx-xxl-5 { + margin-left: 3rem !important; + margin-right: 3rem !important; + } + .mx-xxl-auto { + margin-left: auto !important; + margin-right: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-left: 0 !important; + } + .me-xxl-1 { + margin-left: 0.25rem !important; + } + .me-xxl-2 { + margin-left: 0.5rem !important; + } + .me-xxl-3 { + margin-left: 1rem !important; + } + .me-xxl-4 { + margin-left: 1.5rem !important; + } + .me-xxl-5 { + margin-left: 3rem !important; + } + .me-xxl-auto { + margin-left: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-right: 0 !important; + } + .ms-xxl-1 { + margin-right: 0.25rem !important; + } + .ms-xxl-2 { + margin-right: 0.5rem !important; + } + .ms-xxl-3 { + margin-right: 1rem !important; + } + .ms-xxl-4 { + margin-right: 1.5rem !important; + } + .ms-xxl-5 { + margin-right: 3rem !important; + } + .ms-xxl-auto { + margin-right: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-left: 0 !important; + padding-right: 0 !important; + } + .px-xxl-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; + } + .px-xxl-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; + } + .px-xxl-3 { + padding-left: 1rem !important; + padding-right: 1rem !important; + } + .px-xxl-4 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; + } + .px-xxl-5 { + padding-left: 3rem !important; + padding-right: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-left: 0 !important; + } + .pe-xxl-1 { + padding-left: 0.25rem !important; + } + .pe-xxl-2 { + padding-left: 0.5rem !important; + } + .pe-xxl-3 { + padding-left: 1rem !important; + } + .pe-xxl-4 { + padding-left: 1.5rem !important; + } + .pe-xxl-5 { + padding-left: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-right: 0 !important; + } + .ps-xxl-1 { + padding-right: 0.25rem !important; + } + .ps-xxl-2 { + padding-right: 0.5rem !important; + } + .ps-xxl-3 { + padding-right: 1rem !important; + } + .ps-xxl-4 { + padding-right: 1.5rem !important; + } + .ps-xxl-5 { + padding-right: 3rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-inline-grid { + display: inline-grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap-grid.rtl.css.map */ \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br new file mode 100644 index 0000000..c9daad6 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz new file mode 100644 index 0000000..466d8a6 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map new file mode 100644 index 0000000..8df43cf --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","bootstrap-grid.css","../../scss/mixins/_breakpoints.scss","../../scss/_variables.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;EAAA;ACKA;;;;;;;ECHA,qBAAA;EACA,gBAAA;EACA,WAAA;EACA,4CAAA;EACA,6CAAA;EACA,iBAAA;EACA,kBAAA;ACUF;;AC4CI;EH5CE;IACE,gBIkee;EF9drB;AACF;ACsCI;EH5CE;IACE,gBIkee;EFzdrB;AACF;ACiCI;EH5CE;IACE,gBIkee;EFpdrB;AACF;AC4BI;EH5CE;IACE,iBIkee;EF/crB;AACF;ACuBI;EH5CE;IACE,iBIkee;EF1crB;AACF;AGzCA;EAEI,qBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,yBAAA;EAAA,0BAAA;EAAA,2BAAA;AH+CJ;;AG1CE;ECNA,qBAAA;EACA,gBAAA;EACA,aAAA;EACA,eAAA;EAEA,yCAAA;EACA,4CAAA;EACA,6CAAA;AJmDF;AGjDI;ECGF,sBAAA;EAIA,cAAA;EACA,WAAA;EACA,eAAA;EACA,4CAAA;EACA,6CAAA;EACA,8BAAA;AJ8CF;;AICM;EACE,YAAA;AJER;;AICM;EApCJ,cAAA;EACA,WAAA;AJuCF;;AIzBE;EACE,cAAA;EACA,WAAA;AJ4BJ;;AI9BE;EACE,cAAA;EACA,UAAA;AJiCJ;;AInCE;EACE,cAAA;EACA,mBAAA;AJsCJ;;AIxCE;EACE,cAAA;EACA,UAAA;AJ2CJ;;AI7CE;EACE,cAAA;EACA,UAAA;AJgDJ;;AIlDE;EACE,cAAA;EACA,mBAAA;AJqDJ;;AItBM;EAhDJ,cAAA;EACA,WAAA;AJ0EF;;AIrBU;EAhEN,cAAA;EACA,kBAAA;AJyFJ;;AI1BU;EAhEN,cAAA;EACA,mBAAA;AJ8FJ;;AI/BU;EAhEN,cAAA;EACA,UAAA;AJmGJ;;AIpCU;EAhEN,cAAA;EACA,mBAAA;AJwGJ;;AIzCU;EAhEN,cAAA;EACA,mBAAA;AJ6GJ;;AI9CU;EAhEN,cAAA;EACA,UAAA;AJkHJ;;AInDU;EAhEN,cAAA;EACA,mBAAA;AJuHJ;;AIxDU;EAhEN,cAAA;EACA,mBAAA;AJ4HJ;;AI7DU;EAhEN,cAAA;EACA,UAAA;AJiIJ;;AIlEU;EAhEN,cAAA;EACA,mBAAA;AJsIJ;;AIvEU;EAhEN,cAAA;EACA,mBAAA;AJ2IJ;;AI5EU;EAhEN,cAAA;EACA,WAAA;AJgJJ;;AIzEY;EAxDV,yBAAA;AJqIF;;AI7EY;EAxDV,0BAAA;AJyIF;;AIjFY;EAxDV,iBAAA;AJ6IF;;AIrFY;EAxDV,0BAAA;AJiJF;;AIzFY;EAxDV,0BAAA;AJqJF;;AI7FY;EAxDV,iBAAA;AJyJF;;AIjGY;EAxDV,0BAAA;AJ6JF;;AIrGY;EAxDV,0BAAA;AJiKF;;AIzGY;EAxDV,iBAAA;AJqKF;;AI7GY;EAxDV,0BAAA;AJyKF;;AIjHY;EAxDV,0BAAA;AJ6KF;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AI1GQ;;EAEE,gBAAA;AJ6GV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AIpHQ;;EAEE,sBAAA;AJuHV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AI9HQ;;EAEE,qBAAA;AJiIV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIxIQ;;EAEE,mBAAA;AJ2IV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AIlJQ;;EAEE,qBAAA;AJqJV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;AI5JQ;;EAEE,mBAAA;AJ+JV;;ACzNI;EGUE;IACE,YAAA;EJmNN;EIhNI;IApCJ,cAAA;IACA,WAAA;EJuPA;EIzOA;IACE,cAAA;IACA,WAAA;EJ2OF;EI7OA;IACE,cAAA;IACA,UAAA;EJ+OF;EIjPA;IACE,cAAA;IACA,mBAAA;EJmPF;EIrPA;IACE,cAAA;IACA,UAAA;EJuPF;EIzPA;IACE,cAAA;IACA,UAAA;EJ2PF;EI7PA;IACE,cAAA;IACA,mBAAA;EJ+PF;EIhOI;IAhDJ,cAAA;IACA,WAAA;EJmRA;EI9NQ;IAhEN,cAAA;IACA,kBAAA;EJiSF;EIlOQ;IAhEN,cAAA;IACA,mBAAA;EJqSF;EItOQ;IAhEN,cAAA;IACA,UAAA;EJySF;EI1OQ;IAhEN,cAAA;IACA,mBAAA;EJ6SF;EI9OQ;IAhEN,cAAA;IACA,mBAAA;EJiTF;EIlPQ;IAhEN,cAAA;IACA,UAAA;EJqTF;EItPQ;IAhEN,cAAA;IACA,mBAAA;EJyTF;EI1PQ;IAhEN,cAAA;IACA,mBAAA;EJ6TF;EI9PQ;IAhEN,cAAA;IACA,UAAA;EJiUF;EIlQQ;IAhEN,cAAA;IACA,mBAAA;EJqUF;EItQQ;IAhEN,cAAA;IACA,mBAAA;EJyUF;EI1QQ;IAhEN,cAAA;IACA,WAAA;EJ6UF;EItQU;IAxDV,eAAA;EJiUA;EIzQU;IAxDV,yBAAA;EJoUA;EI5QU;IAxDV,0BAAA;EJuUA;EI/QU;IAxDV,iBAAA;EJ0UA;EIlRU;IAxDV,0BAAA;EJ6UA;EIrRU;IAxDV,0BAAA;EJgVA;EIxRU;IAxDV,iBAAA;EJmVA;EI3RU;IAxDV,0BAAA;EJsVA;EI9RU;IAxDV,0BAAA;EJyVA;EIjSU;IAxDV,iBAAA;EJ4VA;EIpSU;IAxDV,0BAAA;EJ+VA;EIvSU;IAxDV,0BAAA;EJkWA;EI/RM;;IAEE,gBAAA;EJiSR;EI9RM;;IAEE,gBAAA;EJgSR;EIvSM;;IAEE,sBAAA;EJySR;EItSM;;IAEE,sBAAA;EJwSR;EI/SM;;IAEE,qBAAA;EJiTR;EI9SM;;IAEE,qBAAA;EJgTR;EIvTM;;IAEE,mBAAA;EJyTR;EItTM;;IAEE,mBAAA;EJwTR;EI/TM;;IAEE,qBAAA;EJiUR;EI9TM;;IAEE,qBAAA;EJgUR;EIvUM;;IAEE,mBAAA;EJyUR;EItUM;;IAEE,mBAAA;EJwUR;AACF;ACnYI;EGUE;IACE,YAAA;EJ4XN;EIzXI;IApCJ,cAAA;IACA,WAAA;EJgaA;EIlZA;IACE,cAAA;IACA,WAAA;EJoZF;EItZA;IACE,cAAA;IACA,UAAA;EJwZF;EI1ZA;IACE,cAAA;IACA,mBAAA;EJ4ZF;EI9ZA;IACE,cAAA;IACA,UAAA;EJgaF;EIlaA;IACE,cAAA;IACA,UAAA;EJoaF;EItaA;IACE,cAAA;IACA,mBAAA;EJwaF;EIzYI;IAhDJ,cAAA;IACA,WAAA;EJ4bA;EIvYQ;IAhEN,cAAA;IACA,kBAAA;EJ0cF;EI3YQ;IAhEN,cAAA;IACA,mBAAA;EJ8cF;EI/YQ;IAhEN,cAAA;IACA,UAAA;EJkdF;EInZQ;IAhEN,cAAA;IACA,mBAAA;EJsdF;EIvZQ;IAhEN,cAAA;IACA,mBAAA;EJ0dF;EI3ZQ;IAhEN,cAAA;IACA,UAAA;EJ8dF;EI/ZQ;IAhEN,cAAA;IACA,mBAAA;EJkeF;EInaQ;IAhEN,cAAA;IACA,mBAAA;EJseF;EIvaQ;IAhEN,cAAA;IACA,UAAA;EJ0eF;EI3aQ;IAhEN,cAAA;IACA,mBAAA;EJ8eF;EI/aQ;IAhEN,cAAA;IACA,mBAAA;EJkfF;EInbQ;IAhEN,cAAA;IACA,WAAA;EJsfF;EI/aU;IAxDV,eAAA;EJ0eA;EIlbU;IAxDV,yBAAA;EJ6eA;EIrbU;IAxDV,0BAAA;EJgfA;EIxbU;IAxDV,iBAAA;EJmfA;EI3bU;IAxDV,0BAAA;EJsfA;EI9bU;IAxDV,0BAAA;EJyfA;EIjcU;IAxDV,iBAAA;EJ4fA;EIpcU;IAxDV,0BAAA;EJ+fA;EIvcU;IAxDV,0BAAA;EJkgBA;EI1cU;IAxDV,iBAAA;EJqgBA;EI7cU;IAxDV,0BAAA;EJwgBA;EIhdU;IAxDV,0BAAA;EJ2gBA;EIxcM;;IAEE,gBAAA;EJ0cR;EIvcM;;IAEE,gBAAA;EJycR;EIhdM;;IAEE,sBAAA;EJkdR;EI/cM;;IAEE,sBAAA;EJidR;EIxdM;;IAEE,qBAAA;EJ0dR;EIvdM;;IAEE,qBAAA;EJydR;EIheM;;IAEE,mBAAA;EJkeR;EI/dM;;IAEE,mBAAA;EJieR;EIxeM;;IAEE,qBAAA;EJ0eR;EIveM;;IAEE,qBAAA;EJyeR;EIhfM;;IAEE,mBAAA;EJkfR;EI/eM;;IAEE,mBAAA;EJifR;AACF;AC5iBI;EGUE;IACE,YAAA;EJqiBN;EIliBI;IApCJ,cAAA;IACA,WAAA;EJykBA;EI3jBA;IACE,cAAA;IACA,WAAA;EJ6jBF;EI/jBA;IACE,cAAA;IACA,UAAA;EJikBF;EInkBA;IACE,cAAA;IACA,mBAAA;EJqkBF;EIvkBA;IACE,cAAA;IACA,UAAA;EJykBF;EI3kBA;IACE,cAAA;IACA,UAAA;EJ6kBF;EI/kBA;IACE,cAAA;IACA,mBAAA;EJilBF;EIljBI;IAhDJ,cAAA;IACA,WAAA;EJqmBA;EIhjBQ;IAhEN,cAAA;IACA,kBAAA;EJmnBF;EIpjBQ;IAhEN,cAAA;IACA,mBAAA;EJunBF;EIxjBQ;IAhEN,cAAA;IACA,UAAA;EJ2nBF;EI5jBQ;IAhEN,cAAA;IACA,mBAAA;EJ+nBF;EIhkBQ;IAhEN,cAAA;IACA,mBAAA;EJmoBF;EIpkBQ;IAhEN,cAAA;IACA,UAAA;EJuoBF;EIxkBQ;IAhEN,cAAA;IACA,mBAAA;EJ2oBF;EI5kBQ;IAhEN,cAAA;IACA,mBAAA;EJ+oBF;EIhlBQ;IAhEN,cAAA;IACA,UAAA;EJmpBF;EIplBQ;IAhEN,cAAA;IACA,mBAAA;EJupBF;EIxlBQ;IAhEN,cAAA;IACA,mBAAA;EJ2pBF;EI5lBQ;IAhEN,cAAA;IACA,WAAA;EJ+pBF;EIxlBU;IAxDV,eAAA;EJmpBA;EI3lBU;IAxDV,yBAAA;EJspBA;EI9lBU;IAxDV,0BAAA;EJypBA;EIjmBU;IAxDV,iBAAA;EJ4pBA;EIpmBU;IAxDV,0BAAA;EJ+pBA;EIvmBU;IAxDV,0BAAA;EJkqBA;EI1mBU;IAxDV,iBAAA;EJqqBA;EI7mBU;IAxDV,0BAAA;EJwqBA;EIhnBU;IAxDV,0BAAA;EJ2qBA;EInnBU;IAxDV,iBAAA;EJ8qBA;EItnBU;IAxDV,0BAAA;EJirBA;EIznBU;IAxDV,0BAAA;EJorBA;EIjnBM;;IAEE,gBAAA;EJmnBR;EIhnBM;;IAEE,gBAAA;EJknBR;EIznBM;;IAEE,sBAAA;EJ2nBR;EIxnBM;;IAEE,sBAAA;EJ0nBR;EIjoBM;;IAEE,qBAAA;EJmoBR;EIhoBM;;IAEE,qBAAA;EJkoBR;EIzoBM;;IAEE,mBAAA;EJ2oBR;EIxoBM;;IAEE,mBAAA;EJ0oBR;EIjpBM;;IAEE,qBAAA;EJmpBR;EIhpBM;;IAEE,qBAAA;EJkpBR;EIzpBM;;IAEE,mBAAA;EJ2pBR;EIxpBM;;IAEE,mBAAA;EJ0pBR;AACF;ACrtBI;EGUE;IACE,YAAA;EJ8sBN;EI3sBI;IApCJ,cAAA;IACA,WAAA;EJkvBA;EIpuBA;IACE,cAAA;IACA,WAAA;EJsuBF;EIxuBA;IACE,cAAA;IACA,UAAA;EJ0uBF;EI5uBA;IACE,cAAA;IACA,mBAAA;EJ8uBF;EIhvBA;IACE,cAAA;IACA,UAAA;EJkvBF;EIpvBA;IACE,cAAA;IACA,UAAA;EJsvBF;EIxvBA;IACE,cAAA;IACA,mBAAA;EJ0vBF;EI3tBI;IAhDJ,cAAA;IACA,WAAA;EJ8wBA;EIztBQ;IAhEN,cAAA;IACA,kBAAA;EJ4xBF;EI7tBQ;IAhEN,cAAA;IACA,mBAAA;EJgyBF;EIjuBQ;IAhEN,cAAA;IACA,UAAA;EJoyBF;EIruBQ;IAhEN,cAAA;IACA,mBAAA;EJwyBF;EIzuBQ;IAhEN,cAAA;IACA,mBAAA;EJ4yBF;EI7uBQ;IAhEN,cAAA;IACA,UAAA;EJgzBF;EIjvBQ;IAhEN,cAAA;IACA,mBAAA;EJozBF;EIrvBQ;IAhEN,cAAA;IACA,mBAAA;EJwzBF;EIzvBQ;IAhEN,cAAA;IACA,UAAA;EJ4zBF;EI7vBQ;IAhEN,cAAA;IACA,mBAAA;EJg0BF;EIjwBQ;IAhEN,cAAA;IACA,mBAAA;EJo0BF;EIrwBQ;IAhEN,cAAA;IACA,WAAA;EJw0BF;EIjwBU;IAxDV,eAAA;EJ4zBA;EIpwBU;IAxDV,yBAAA;EJ+zBA;EIvwBU;IAxDV,0BAAA;EJk0BA;EI1wBU;IAxDV,iBAAA;EJq0BA;EI7wBU;IAxDV,0BAAA;EJw0BA;EIhxBU;IAxDV,0BAAA;EJ20BA;EInxBU;IAxDV,iBAAA;EJ80BA;EItxBU;IAxDV,0BAAA;EJi1BA;EIzxBU;IAxDV,0BAAA;EJo1BA;EI5xBU;IAxDV,iBAAA;EJu1BA;EI/xBU;IAxDV,0BAAA;EJ01BA;EIlyBU;IAxDV,0BAAA;EJ61BA;EI1xBM;;IAEE,gBAAA;EJ4xBR;EIzxBM;;IAEE,gBAAA;EJ2xBR;EIlyBM;;IAEE,sBAAA;EJoyBR;EIjyBM;;IAEE,sBAAA;EJmyBR;EI1yBM;;IAEE,qBAAA;EJ4yBR;EIzyBM;;IAEE,qBAAA;EJ2yBR;EIlzBM;;IAEE,mBAAA;EJozBR;EIjzBM;;IAEE,mBAAA;EJmzBR;EI1zBM;;IAEE,qBAAA;EJ4zBR;EIzzBM;;IAEE,qBAAA;EJ2zBR;EIl0BM;;IAEE,mBAAA;EJo0BR;EIj0BM;;IAEE,mBAAA;EJm0BR;AACF;AC93BI;EGUE;IACE,YAAA;EJu3BN;EIp3BI;IApCJ,cAAA;IACA,WAAA;EJ25BA;EI74BA;IACE,cAAA;IACA,WAAA;EJ+4BF;EIj5BA;IACE,cAAA;IACA,UAAA;EJm5BF;EIr5BA;IACE,cAAA;IACA,mBAAA;EJu5BF;EIz5BA;IACE,cAAA;IACA,UAAA;EJ25BF;EI75BA;IACE,cAAA;IACA,UAAA;EJ+5BF;EIj6BA;IACE,cAAA;IACA,mBAAA;EJm6BF;EIp4BI;IAhDJ,cAAA;IACA,WAAA;EJu7BA;EIl4BQ;IAhEN,cAAA;IACA,kBAAA;EJq8BF;EIt4BQ;IAhEN,cAAA;IACA,mBAAA;EJy8BF;EI14BQ;IAhEN,cAAA;IACA,UAAA;EJ68BF;EI94BQ;IAhEN,cAAA;IACA,mBAAA;EJi9BF;EIl5BQ;IAhEN,cAAA;IACA,mBAAA;EJq9BF;EIt5BQ;IAhEN,cAAA;IACA,UAAA;EJy9BF;EI15BQ;IAhEN,cAAA;IACA,mBAAA;EJ69BF;EI95BQ;IAhEN,cAAA;IACA,mBAAA;EJi+BF;EIl6BQ;IAhEN,cAAA;IACA,UAAA;EJq+BF;EIt6BQ;IAhEN,cAAA;IACA,mBAAA;EJy+BF;EI16BQ;IAhEN,cAAA;IACA,mBAAA;EJ6+BF;EI96BQ;IAhEN,cAAA;IACA,WAAA;EJi/BF;EI16BU;IAxDV,eAAA;EJq+BA;EI76BU;IAxDV,yBAAA;EJw+BA;EIh7BU;IAxDV,0BAAA;EJ2+BA;EIn7BU;IAxDV,iBAAA;EJ8+BA;EIt7BU;IAxDV,0BAAA;EJi/BA;EIz7BU;IAxDV,0BAAA;EJo/BA;EI57BU;IAxDV,iBAAA;EJu/BA;EI/7BU;IAxDV,0BAAA;EJ0/BA;EIl8BU;IAxDV,0BAAA;EJ6/BA;EIr8BU;IAxDV,iBAAA;EJggCA;EIx8BU;IAxDV,0BAAA;EJmgCA;EI38BU;IAxDV,0BAAA;EJsgCA;EIn8BM;;IAEE,gBAAA;EJq8BR;EIl8BM;;IAEE,gBAAA;EJo8BR;EI38BM;;IAEE,sBAAA;EJ68BR;EI18BM;;IAEE,sBAAA;EJ48BR;EIn9BM;;IAEE,qBAAA;EJq9BR;EIl9BM;;IAEE,qBAAA;EJo9BR;EI39BM;;IAEE,mBAAA;EJ69BR;EI19BM;;IAEE,mBAAA;EJ49BR;EIn+BM;;IAEE,qBAAA;EJq+BR;EIl+BM;;IAEE,qBAAA;EJo+BR;EI3+BM;;IAEE,mBAAA;EJ6+BR;EI1+BM;;IAEE,mBAAA;EJ4+BR;AACF;AKpiCQ;EAOI,0BAAA;ALgiCZ;;AKviCQ;EAOI,gCAAA;ALoiCZ;;AK3iCQ;EAOI,yBAAA;ALwiCZ;;AK/iCQ;EAOI,wBAAA;AL4iCZ;;AKnjCQ;EAOI,+BAAA;ALgjCZ;;AKvjCQ;EAOI,yBAAA;ALojCZ;;AK3jCQ;EAOI,6BAAA;ALwjCZ;;AK/jCQ;EAOI,8BAAA;AL4jCZ;;AKnkCQ;EAOI,wBAAA;ALgkCZ;;AKvkCQ;EAOI,+BAAA;ALokCZ;;AK3kCQ;EAOI,wBAAA;ALwkCZ;;AK/kCQ;EAOI,yBAAA;AL4kCZ;;AKnlCQ;EAOI,8BAAA;ALglCZ;;AKvlCQ;EAOI,iCAAA;ALolCZ;;AK3lCQ;EAOI,sCAAA;ALwlCZ;;AK/lCQ;EAOI,yCAAA;AL4lCZ;;AKnmCQ;EAOI,uBAAA;ALgmCZ;;AKvmCQ;EAOI,uBAAA;ALomCZ;;AK3mCQ;EAOI,yBAAA;ALwmCZ;;AK/mCQ;EAOI,yBAAA;AL4mCZ;;AKnnCQ;EAOI,0BAAA;ALgnCZ;;AKvnCQ;EAOI,4BAAA;ALonCZ;;AK3nCQ;EAOI,kCAAA;ALwnCZ;;AK/nCQ;EAOI,sCAAA;AL4nCZ;;AKnoCQ;EAOI,oCAAA;ALgoCZ;;AKvoCQ;EAOI,kCAAA;ALooCZ;;AK3oCQ;EAOI,yCAAA;ALwoCZ;;AK/oCQ;EAOI,wCAAA;AL4oCZ;;AKnpCQ;EAOI,wCAAA;ALgpCZ;;AKvpCQ;EAOI,kCAAA;ALopCZ;;AK3pCQ;EAOI,gCAAA;ALwpCZ;;AK/pCQ;EAOI,8BAAA;AL4pCZ;;AKnqCQ;EAOI,gCAAA;ALgqCZ;;AKvqCQ;EAOI,+BAAA;ALoqCZ;;AK3qCQ;EAOI,oCAAA;ALwqCZ;;AK/qCQ;EAOI,kCAAA;AL4qCZ;;AKnrCQ;EAOI,gCAAA;ALgrCZ;;AKvrCQ;EAOI,uCAAA;ALorCZ;;AK3rCQ;EAOI,sCAAA;ALwrCZ;;AK/rCQ;EAOI,iCAAA;AL4rCZ;;AKnsCQ;EAOI,2BAAA;ALgsCZ;;AKvsCQ;EAOI,iCAAA;ALosCZ;;AK3sCQ;EAOI,+BAAA;ALwsCZ;;AK/sCQ;EAOI,6BAAA;AL4sCZ;;AKntCQ;EAOI,+BAAA;ALgtCZ;;AKvtCQ;EAOI,8BAAA;ALotCZ;;AK3tCQ;EAOI,oBAAA;ALwtCZ;;AK/tCQ;EAOI,mBAAA;AL4tCZ;;AKnuCQ;EAOI,mBAAA;ALguCZ;;AKvuCQ;EAOI,mBAAA;ALouCZ;;AK3uCQ;EAOI,mBAAA;ALwuCZ;;AK/uCQ;EAOI,mBAAA;AL4uCZ;;AKnvCQ;EAOI,mBAAA;ALgvCZ;;AKvvCQ;EAOI,mBAAA;ALovCZ;;AK3vCQ;EAOI,oBAAA;ALwvCZ;;AK/vCQ;EAOI,0BAAA;AL4vCZ;;AKnwCQ;EAOI,yBAAA;ALgwCZ;;AKvwCQ;EAOI,uBAAA;ALowCZ;;AK3wCQ;EAOI,yBAAA;ALwwCZ;;AK/wCQ;EAOI,uBAAA;AL4wCZ;;AKnxCQ;EAOI,uBAAA;ALgxCZ;;AKvxCQ;EAOI,yBAAA;EAAA,0BAAA;ALqxCZ;;AK5xCQ;EAOI,+BAAA;EAAA,gCAAA;AL0xCZ;;AKjyCQ;EAOI,8BAAA;EAAA,+BAAA;AL+xCZ;;AKtyCQ;EAOI,4BAAA;EAAA,6BAAA;ALoyCZ;;AK3yCQ;EAOI,8BAAA;EAAA,+BAAA;ALyyCZ;;AKhzCQ;EAOI,4BAAA;EAAA,6BAAA;AL8yCZ;;AKrzCQ;EAOI,4BAAA;EAAA,6BAAA;ALmzCZ;;AK1zCQ;EAOI,wBAAA;EAAA,2BAAA;ALwzCZ;;AK/zCQ;EAOI,8BAAA;EAAA,iCAAA;AL6zCZ;;AKp0CQ;EAOI,6BAAA;EAAA,gCAAA;ALk0CZ;;AKz0CQ;EAOI,2BAAA;EAAA,8BAAA;ALu0CZ;;AK90CQ;EAOI,6BAAA;EAAA,gCAAA;AL40CZ;;AKn1CQ;EAOI,2BAAA;EAAA,8BAAA;ALi1CZ;;AKx1CQ;EAOI,2BAAA;EAAA,8BAAA;ALs1CZ;;AK71CQ;EAOI,wBAAA;AL01CZ;;AKj2CQ;EAOI,8BAAA;AL81CZ;;AKr2CQ;EAOI,6BAAA;ALk2CZ;;AKz2CQ;EAOI,2BAAA;ALs2CZ;;AK72CQ;EAOI,6BAAA;AL02CZ;;AKj3CQ;EAOI,2BAAA;AL82CZ;;AKr3CQ;EAOI,2BAAA;ALk3CZ;;AKz3CQ;EAOI,yBAAA;ALs3CZ;;AK73CQ;EAOI,+BAAA;AL03CZ;;AKj4CQ;EAOI,8BAAA;AL83CZ;;AKr4CQ;EAOI,4BAAA;ALk4CZ;;AKz4CQ;EAOI,8BAAA;ALs4CZ;;AK74CQ;EAOI,4BAAA;AL04CZ;;AKj5CQ;EAOI,4BAAA;AL84CZ;;AKr5CQ;EAOI,2BAAA;ALk5CZ;;AKz5CQ;EAOI,iCAAA;ALs5CZ;;AK75CQ;EAOI,gCAAA;AL05CZ;;AKj6CQ;EAOI,8BAAA;AL85CZ;;AKr6CQ;EAOI,gCAAA;ALk6CZ;;AKz6CQ;EAOI,8BAAA;ALs6CZ;;AK76CQ;EAOI,8BAAA;AL06CZ;;AKj7CQ;EAOI,0BAAA;AL86CZ;;AKr7CQ;EAOI,gCAAA;ALk7CZ;;AKz7CQ;EAOI,+BAAA;ALs7CZ;;AK77CQ;EAOI,6BAAA;AL07CZ;;AKj8CQ;EAOI,+BAAA;AL87CZ;;AKr8CQ;EAOI,6BAAA;ALk8CZ;;AKz8CQ;EAOI,6BAAA;ALs8CZ;;AK78CQ;EAOI,qBAAA;AL08CZ;;AKj9CQ;EAOI,2BAAA;AL88CZ;;AKr9CQ;EAOI,0BAAA;ALk9CZ;;AKz9CQ;EAOI,wBAAA;ALs9CZ;;AK79CQ;EAOI,0BAAA;AL09CZ;;AKj+CQ;EAOI,wBAAA;AL89CZ;;AKr+CQ;EAOI,0BAAA;EAAA,2BAAA;ALm+CZ;;AK1+CQ;EAOI,gCAAA;EAAA,iCAAA;ALw+CZ;;AK/+CQ;EAOI,+BAAA;EAAA,gCAAA;AL6+CZ;;AKp/CQ;EAOI,6BAAA;EAAA,8BAAA;ALk/CZ;;AKz/CQ;EAOI,+BAAA;EAAA,gCAAA;ALu/CZ;;AK9/CQ;EAOI,6BAAA;EAAA,8BAAA;AL4/CZ;;AKngDQ;EAOI,yBAAA;EAAA,4BAAA;ALigDZ;;AKxgDQ;EAOI,+BAAA;EAAA,kCAAA;ALsgDZ;;AK7gDQ;EAOI,8BAAA;EAAA,iCAAA;AL2gDZ;;AKlhDQ;EAOI,4BAAA;EAAA,+BAAA;ALghDZ;;AKvhDQ;EAOI,8BAAA;EAAA,iCAAA;ALqhDZ;;AK5hDQ;EAOI,4BAAA;EAAA,+BAAA;AL0hDZ;;AKjiDQ;EAOI,yBAAA;AL8hDZ;;AKriDQ;EAOI,+BAAA;ALkiDZ;;AKziDQ;EAOI,8BAAA;ALsiDZ;;AK7iDQ;EAOI,4BAAA;AL0iDZ;;AKjjDQ;EAOI,8BAAA;AL8iDZ;;AKrjDQ;EAOI,4BAAA;ALkjDZ;;AKzjDQ;EAOI,0BAAA;ALsjDZ;;AK7jDQ;EAOI,gCAAA;AL0jDZ;;AKjkDQ;EAOI,+BAAA;AL8jDZ;;AKrkDQ;EAOI,6BAAA;ALkkDZ;;AKzkDQ;EAOI,+BAAA;ALskDZ;;AK7kDQ;EAOI,6BAAA;AL0kDZ;;AKjlDQ;EAOI,4BAAA;AL8kDZ;;AKrlDQ;EAOI,kCAAA;ALklDZ;;AKzlDQ;EAOI,iCAAA;ALslDZ;;AK7lDQ;EAOI,+BAAA;AL0lDZ;;AKjmDQ;EAOI,iCAAA;AL8lDZ;;AKrmDQ;EAOI,+BAAA;ALkmDZ;;AKzmDQ;EAOI,2BAAA;ALsmDZ;;AK7mDQ;EAOI,iCAAA;AL0mDZ;;AKjnDQ;EAOI,gCAAA;AL8mDZ;;AKrnDQ;EAOI,8BAAA;ALknDZ;;AKznDQ;EAOI,gCAAA;ALsnDZ;;AK7nDQ;EAOI,8BAAA;AL0nDZ;;ACpoDI;EIGI;IAOI,0BAAA;EL+nDV;EKtoDM;IAOI,gCAAA;ELkoDV;EKzoDM;IAOI,yBAAA;ELqoDV;EK5oDM;IAOI,wBAAA;ELwoDV;EK/oDM;IAOI,+BAAA;EL2oDV;EKlpDM;IAOI,yBAAA;EL8oDV;EKrpDM;IAOI,6BAAA;ELipDV;EKxpDM;IAOI,8BAAA;ELopDV;EK3pDM;IAOI,wBAAA;ELupDV;EK9pDM;IAOI,+BAAA;EL0pDV;EKjqDM;IAOI,wBAAA;EL6pDV;EKpqDM;IAOI,yBAAA;ELgqDV;EKvqDM;IAOI,8BAAA;ELmqDV;EK1qDM;IAOI,iCAAA;ELsqDV;EK7qDM;IAOI,sCAAA;ELyqDV;EKhrDM;IAOI,yCAAA;EL4qDV;EKnrDM;IAOI,uBAAA;EL+qDV;EKtrDM;IAOI,uBAAA;ELkrDV;EKzrDM;IAOI,yBAAA;ELqrDV;EK5rDM;IAOI,yBAAA;ELwrDV;EK/rDM;IAOI,0BAAA;EL2rDV;EKlsDM;IAOI,4BAAA;EL8rDV;EKrsDM;IAOI,kCAAA;ELisDV;EKxsDM;IAOI,sCAAA;ELosDV;EK3sDM;IAOI,oCAAA;ELusDV;EK9sDM;IAOI,kCAAA;EL0sDV;EKjtDM;IAOI,yCAAA;EL6sDV;EKptDM;IAOI,wCAAA;ELgtDV;EKvtDM;IAOI,wCAAA;ELmtDV;EK1tDM;IAOI,kCAAA;ELstDV;EK7tDM;IAOI,gCAAA;ELytDV;EKhuDM;IAOI,8BAAA;EL4tDV;EKnuDM;IAOI,gCAAA;EL+tDV;EKtuDM;IAOI,+BAAA;ELkuDV;EKzuDM;IAOI,oCAAA;ELquDV;EK5uDM;IAOI,kCAAA;ELwuDV;EK/uDM;IAOI,gCAAA;EL2uDV;EKlvDM;IAOI,uCAAA;EL8uDV;EKrvDM;IAOI,sCAAA;ELivDV;EKxvDM;IAOI,iCAAA;ELovDV;EK3vDM;IAOI,2BAAA;ELuvDV;EK9vDM;IAOI,iCAAA;EL0vDV;EKjwDM;IAOI,+BAAA;EL6vDV;EKpwDM;IAOI,6BAAA;ELgwDV;EKvwDM;IAOI,+BAAA;ELmwDV;EK1wDM;IAOI,8BAAA;ELswDV;EK7wDM;IAOI,oBAAA;ELywDV;EKhxDM;IAOI,mBAAA;EL4wDV;EKnxDM;IAOI,mBAAA;EL+wDV;EKtxDM;IAOI,mBAAA;ELkxDV;EKzxDM;IAOI,mBAAA;ELqxDV;EK5xDM;IAOI,mBAAA;ELwxDV;EK/xDM;IAOI,mBAAA;EL2xDV;EKlyDM;IAOI,mBAAA;EL8xDV;EKryDM;IAOI,oBAAA;ELiyDV;EKxyDM;IAOI,0BAAA;ELoyDV;EK3yDM;IAOI,yBAAA;ELuyDV;EK9yDM;IAOI,uBAAA;EL0yDV;EKjzDM;IAOI,yBAAA;EL6yDV;EKpzDM;IAOI,uBAAA;ELgzDV;EKvzDM;IAOI,uBAAA;ELmzDV;EK1zDM;IAOI,yBAAA;IAAA,0BAAA;ELuzDV;EK9zDM;IAOI,+BAAA;IAAA,gCAAA;EL2zDV;EKl0DM;IAOI,8BAAA;IAAA,+BAAA;EL+zDV;EKt0DM;IAOI,4BAAA;IAAA,6BAAA;ELm0DV;EK10DM;IAOI,8BAAA;IAAA,+BAAA;ELu0DV;EK90DM;IAOI,4BAAA;IAAA,6BAAA;EL20DV;EKl1DM;IAOI,4BAAA;IAAA,6BAAA;EL+0DV;EKt1DM;IAOI,wBAAA;IAAA,2BAAA;ELm1DV;EK11DM;IAOI,8BAAA;IAAA,iCAAA;ELu1DV;EK91DM;IAOI,6BAAA;IAAA,gCAAA;EL21DV;EKl2DM;IAOI,2BAAA;IAAA,8BAAA;EL+1DV;EKt2DM;IAOI,6BAAA;IAAA,gCAAA;ELm2DV;EK12DM;IAOI,2BAAA;IAAA,8BAAA;ELu2DV;EK92DM;IAOI,2BAAA;IAAA,8BAAA;EL22DV;EKl3DM;IAOI,wBAAA;EL82DV;EKr3DM;IAOI,8BAAA;ELi3DV;EKx3DM;IAOI,6BAAA;ELo3DV;EK33DM;IAOI,2BAAA;ELu3DV;EK93DM;IAOI,6BAAA;EL03DV;EKj4DM;IAOI,2BAAA;EL63DV;EKp4DM;IAOI,2BAAA;ELg4DV;EKv4DM;IAOI,yBAAA;ELm4DV;EK14DM;IAOI,+BAAA;ELs4DV;EK74DM;IAOI,8BAAA;ELy4DV;EKh5DM;IAOI,4BAAA;EL44DV;EKn5DM;IAOI,8BAAA;EL+4DV;EKt5DM;IAOI,4BAAA;ELk5DV;EKz5DM;IAOI,4BAAA;ELq5DV;EK55DM;IAOI,2BAAA;ELw5DV;EK/5DM;IAOI,iCAAA;EL25DV;EKl6DM;IAOI,gCAAA;EL85DV;EKr6DM;IAOI,8BAAA;ELi6DV;EKx6DM;IAOI,gCAAA;ELo6DV;EK36DM;IAOI,8BAAA;ELu6DV;EK96DM;IAOI,8BAAA;EL06DV;EKj7DM;IAOI,0BAAA;EL66DV;EKp7DM;IAOI,gCAAA;ELg7DV;EKv7DM;IAOI,+BAAA;ELm7DV;EK17DM;IAOI,6BAAA;ELs7DV;EK77DM;IAOI,+BAAA;ELy7DV;EKh8DM;IAOI,6BAAA;EL47DV;EKn8DM;IAOI,6BAAA;EL+7DV;EKt8DM;IAOI,qBAAA;ELk8DV;EKz8DM;IAOI,2BAAA;ELq8DV;EK58DM;IAOI,0BAAA;ELw8DV;EK/8DM;IAOI,wBAAA;EL28DV;EKl9DM;IAOI,0BAAA;EL88DV;EKr9DM;IAOI,wBAAA;ELi9DV;EKx9DM;IAOI,0BAAA;IAAA,2BAAA;ELq9DV;EK59DM;IAOI,gCAAA;IAAA,iCAAA;ELy9DV;EKh+DM;IAOI,+BAAA;IAAA,gCAAA;EL69DV;EKp+DM;IAOI,6BAAA;IAAA,8BAAA;ELi+DV;EKx+DM;IAOI,+BAAA;IAAA,gCAAA;ELq+DV;EK5+DM;IAOI,6BAAA;IAAA,8BAAA;ELy+DV;EKh/DM;IAOI,yBAAA;IAAA,4BAAA;EL6+DV;EKp/DM;IAOI,+BAAA;IAAA,kCAAA;ELi/DV;EKx/DM;IAOI,8BAAA;IAAA,iCAAA;ELq/DV;EK5/DM;IAOI,4BAAA;IAAA,+BAAA;ELy/DV;EKhgEM;IAOI,8BAAA;IAAA,iCAAA;EL6/DV;EKpgEM;IAOI,4BAAA;IAAA,+BAAA;ELigEV;EKxgEM;IAOI,yBAAA;ELogEV;EK3gEM;IAOI,+BAAA;ELugEV;EK9gEM;IAOI,8BAAA;EL0gEV;EKjhEM;IAOI,4BAAA;EL6gEV;EKphEM;IAOI,8BAAA;ELghEV;EKvhEM;IAOI,4BAAA;ELmhEV;EK1hEM;IAOI,0BAAA;ELshEV;EK7hEM;IAOI,gCAAA;ELyhEV;EKhiEM;IAOI,+BAAA;EL4hEV;EKniEM;IAOI,6BAAA;EL+hEV;EKtiEM;IAOI,+BAAA;ELkiEV;EKziEM;IAOI,6BAAA;ELqiEV;EK5iEM;IAOI,4BAAA;ELwiEV;EK/iEM;IAOI,kCAAA;EL2iEV;EKljEM;IAOI,iCAAA;EL8iEV;EKrjEM;IAOI,+BAAA;ELijEV;EKxjEM;IAOI,iCAAA;ELojEV;EK3jEM;IAOI,+BAAA;ELujEV;EK9jEM;IAOI,2BAAA;EL0jEV;EKjkEM;IAOI,iCAAA;EL6jEV;EKpkEM;IAOI,gCAAA;ELgkEV;EKvkEM;IAOI,8BAAA;ELmkEV;EK1kEM;IAOI,gCAAA;ELskEV;EK7kEM;IAOI,8BAAA;ELykEV;AACF;ACplEI;EIGI;IAOI,0BAAA;EL8kEV;EKrlEM;IAOI,gCAAA;ELilEV;EKxlEM;IAOI,yBAAA;ELolEV;EK3lEM;IAOI,wBAAA;ELulEV;EK9lEM;IAOI,+BAAA;EL0lEV;EKjmEM;IAOI,yBAAA;EL6lEV;EKpmEM;IAOI,6BAAA;ELgmEV;EKvmEM;IAOI,8BAAA;ELmmEV;EK1mEM;IAOI,wBAAA;ELsmEV;EK7mEM;IAOI,+BAAA;ELymEV;EKhnEM;IAOI,wBAAA;EL4mEV;EKnnEM;IAOI,yBAAA;EL+mEV;EKtnEM;IAOI,8BAAA;ELknEV;EKznEM;IAOI,iCAAA;ELqnEV;EK5nEM;IAOI,sCAAA;ELwnEV;EK/nEM;IAOI,yCAAA;EL2nEV;EKloEM;IAOI,uBAAA;EL8nEV;EKroEM;IAOI,uBAAA;ELioEV;EKxoEM;IAOI,yBAAA;ELooEV;EK3oEM;IAOI,yBAAA;ELuoEV;EK9oEM;IAOI,0BAAA;EL0oEV;EKjpEM;IAOI,4BAAA;EL6oEV;EKppEM;IAOI,kCAAA;ELgpEV;EKvpEM;IAOI,sCAAA;ELmpEV;EK1pEM;IAOI,oCAAA;ELspEV;EK7pEM;IAOI,kCAAA;ELypEV;EKhqEM;IAOI,yCAAA;EL4pEV;EKnqEM;IAOI,wCAAA;EL+pEV;EKtqEM;IAOI,wCAAA;ELkqEV;EKzqEM;IAOI,kCAAA;ELqqEV;EK5qEM;IAOI,gCAAA;ELwqEV;EK/qEM;IAOI,8BAAA;EL2qEV;EKlrEM;IAOI,gCAAA;EL8qEV;EKrrEM;IAOI,+BAAA;ELirEV;EKxrEM;IAOI,oCAAA;ELorEV;EK3rEM;IAOI,kCAAA;ELurEV;EK9rEM;IAOI,gCAAA;EL0rEV;EKjsEM;IAOI,uCAAA;EL6rEV;EKpsEM;IAOI,sCAAA;ELgsEV;EKvsEM;IAOI,iCAAA;ELmsEV;EK1sEM;IAOI,2BAAA;ELssEV;EK7sEM;IAOI,iCAAA;ELysEV;EKhtEM;IAOI,+BAAA;EL4sEV;EKntEM;IAOI,6BAAA;EL+sEV;EKttEM;IAOI,+BAAA;ELktEV;EKztEM;IAOI,8BAAA;ELqtEV;EK5tEM;IAOI,oBAAA;ELwtEV;EK/tEM;IAOI,mBAAA;EL2tEV;EKluEM;IAOI,mBAAA;EL8tEV;EKruEM;IAOI,mBAAA;ELiuEV;EKxuEM;IAOI,mBAAA;ELouEV;EK3uEM;IAOI,mBAAA;ELuuEV;EK9uEM;IAOI,mBAAA;EL0uEV;EKjvEM;IAOI,mBAAA;EL6uEV;EKpvEM;IAOI,oBAAA;ELgvEV;EKvvEM;IAOI,0BAAA;ELmvEV;EK1vEM;IAOI,yBAAA;ELsvEV;EK7vEM;IAOI,uBAAA;ELyvEV;EKhwEM;IAOI,yBAAA;EL4vEV;EKnwEM;IAOI,uBAAA;EL+vEV;EKtwEM;IAOI,uBAAA;ELkwEV;EKzwEM;IAOI,yBAAA;IAAA,0BAAA;ELswEV;EK7wEM;IAOI,+BAAA;IAAA,gCAAA;EL0wEV;EKjxEM;IAOI,8BAAA;IAAA,+BAAA;EL8wEV;EKrxEM;IAOI,4BAAA;IAAA,6BAAA;ELkxEV;EKzxEM;IAOI,8BAAA;IAAA,+BAAA;ELsxEV;EK7xEM;IAOI,4BAAA;IAAA,6BAAA;EL0xEV;EKjyEM;IAOI,4BAAA;IAAA,6BAAA;EL8xEV;EKryEM;IAOI,wBAAA;IAAA,2BAAA;ELkyEV;EKzyEM;IAOI,8BAAA;IAAA,iCAAA;ELsyEV;EK7yEM;IAOI,6BAAA;IAAA,gCAAA;EL0yEV;EKjzEM;IAOI,2BAAA;IAAA,8BAAA;EL8yEV;EKrzEM;IAOI,6BAAA;IAAA,gCAAA;ELkzEV;EKzzEM;IAOI,2BAAA;IAAA,8BAAA;ELszEV;EK7zEM;IAOI,2BAAA;IAAA,8BAAA;EL0zEV;EKj0EM;IAOI,wBAAA;EL6zEV;EKp0EM;IAOI,8BAAA;ELg0EV;EKv0EM;IAOI,6BAAA;ELm0EV;EK10EM;IAOI,2BAAA;ELs0EV;EK70EM;IAOI,6BAAA;ELy0EV;EKh1EM;IAOI,2BAAA;EL40EV;EKn1EM;IAOI,2BAAA;EL+0EV;EKt1EM;IAOI,yBAAA;ELk1EV;EKz1EM;IAOI,+BAAA;ELq1EV;EK51EM;IAOI,8BAAA;ELw1EV;EK/1EM;IAOI,4BAAA;EL21EV;EKl2EM;IAOI,8BAAA;EL81EV;EKr2EM;IAOI,4BAAA;ELi2EV;EKx2EM;IAOI,4BAAA;ELo2EV;EK32EM;IAOI,2BAAA;ELu2EV;EK92EM;IAOI,iCAAA;EL02EV;EKj3EM;IAOI,gCAAA;EL62EV;EKp3EM;IAOI,8BAAA;ELg3EV;EKv3EM;IAOI,gCAAA;ELm3EV;EK13EM;IAOI,8BAAA;ELs3EV;EK73EM;IAOI,8BAAA;ELy3EV;EKh4EM;IAOI,0BAAA;EL43EV;EKn4EM;IAOI,gCAAA;EL+3EV;EKt4EM;IAOI,+BAAA;ELk4EV;EKz4EM;IAOI,6BAAA;ELq4EV;EK54EM;IAOI,+BAAA;ELw4EV;EK/4EM;IAOI,6BAAA;EL24EV;EKl5EM;IAOI,6BAAA;EL84EV;EKr5EM;IAOI,qBAAA;ELi5EV;EKx5EM;IAOI,2BAAA;ELo5EV;EK35EM;IAOI,0BAAA;ELu5EV;EK95EM;IAOI,wBAAA;EL05EV;EKj6EM;IAOI,0BAAA;EL65EV;EKp6EM;IAOI,wBAAA;ELg6EV;EKv6EM;IAOI,0BAAA;IAAA,2BAAA;ELo6EV;EK36EM;IAOI,gCAAA;IAAA,iCAAA;ELw6EV;EK/6EM;IAOI,+BAAA;IAAA,gCAAA;EL46EV;EKn7EM;IAOI,6BAAA;IAAA,8BAAA;ELg7EV;EKv7EM;IAOI,+BAAA;IAAA,gCAAA;ELo7EV;EK37EM;IAOI,6BAAA;IAAA,8BAAA;ELw7EV;EK/7EM;IAOI,yBAAA;IAAA,4BAAA;EL47EV;EKn8EM;IAOI,+BAAA;IAAA,kCAAA;ELg8EV;EKv8EM;IAOI,8BAAA;IAAA,iCAAA;ELo8EV;EK38EM;IAOI,4BAAA;IAAA,+BAAA;ELw8EV;EK/8EM;IAOI,8BAAA;IAAA,iCAAA;EL48EV;EKn9EM;IAOI,4BAAA;IAAA,+BAAA;ELg9EV;EKv9EM;IAOI,yBAAA;ELm9EV;EK19EM;IAOI,+BAAA;ELs9EV;EK79EM;IAOI,8BAAA;ELy9EV;EKh+EM;IAOI,4BAAA;EL49EV;EKn+EM;IAOI,8BAAA;EL+9EV;EKt+EM;IAOI,4BAAA;ELk+EV;EKz+EM;IAOI,0BAAA;ELq+EV;EK5+EM;IAOI,gCAAA;ELw+EV;EK/+EM;IAOI,+BAAA;EL2+EV;EKl/EM;IAOI,6BAAA;EL8+EV;EKr/EM;IAOI,+BAAA;ELi/EV;EKx/EM;IAOI,6BAAA;ELo/EV;EK3/EM;IAOI,4BAAA;ELu/EV;EK9/EM;IAOI,kCAAA;EL0/EV;EKjgFM;IAOI,iCAAA;EL6/EV;EKpgFM;IAOI,+BAAA;ELggFV;EKvgFM;IAOI,iCAAA;ELmgFV;EK1gFM;IAOI,+BAAA;ELsgFV;EK7gFM;IAOI,2BAAA;ELygFV;EKhhFM;IAOI,iCAAA;EL4gFV;EKnhFM;IAOI,gCAAA;EL+gFV;EKthFM;IAOI,8BAAA;ELkhFV;EKzhFM;IAOI,gCAAA;ELqhFV;EK5hFM;IAOI,8BAAA;ELwhFV;AACF;ACniFI;EIGI;IAOI,0BAAA;EL6hFV;EKpiFM;IAOI,gCAAA;ELgiFV;EKviFM;IAOI,yBAAA;ELmiFV;EK1iFM;IAOI,wBAAA;ELsiFV;EK7iFM;IAOI,+BAAA;ELyiFV;EKhjFM;IAOI,yBAAA;EL4iFV;EKnjFM;IAOI,6BAAA;EL+iFV;EKtjFM;IAOI,8BAAA;ELkjFV;EKzjFM;IAOI,wBAAA;ELqjFV;EK5jFM;IAOI,+BAAA;ELwjFV;EK/jFM;IAOI,wBAAA;EL2jFV;EKlkFM;IAOI,yBAAA;EL8jFV;EKrkFM;IAOI,8BAAA;ELikFV;EKxkFM;IAOI,iCAAA;ELokFV;EK3kFM;IAOI,sCAAA;ELukFV;EK9kFM;IAOI,yCAAA;EL0kFV;EKjlFM;IAOI,uBAAA;EL6kFV;EKplFM;IAOI,uBAAA;ELglFV;EKvlFM;IAOI,yBAAA;ELmlFV;EK1lFM;IAOI,yBAAA;ELslFV;EK7lFM;IAOI,0BAAA;ELylFV;EKhmFM;IAOI,4BAAA;EL4lFV;EKnmFM;IAOI,kCAAA;EL+lFV;EKtmFM;IAOI,sCAAA;ELkmFV;EKzmFM;IAOI,oCAAA;ELqmFV;EK5mFM;IAOI,kCAAA;ELwmFV;EK/mFM;IAOI,yCAAA;EL2mFV;EKlnFM;IAOI,wCAAA;EL8mFV;EKrnFM;IAOI,wCAAA;ELinFV;EKxnFM;IAOI,kCAAA;ELonFV;EK3nFM;IAOI,gCAAA;ELunFV;EK9nFM;IAOI,8BAAA;EL0nFV;EKjoFM;IAOI,gCAAA;EL6nFV;EKpoFM;IAOI,+BAAA;ELgoFV;EKvoFM;IAOI,oCAAA;ELmoFV;EK1oFM;IAOI,kCAAA;ELsoFV;EK7oFM;IAOI,gCAAA;ELyoFV;EKhpFM;IAOI,uCAAA;EL4oFV;EKnpFM;IAOI,sCAAA;EL+oFV;EKtpFM;IAOI,iCAAA;ELkpFV;EKzpFM;IAOI,2BAAA;ELqpFV;EK5pFM;IAOI,iCAAA;ELwpFV;EK/pFM;IAOI,+BAAA;EL2pFV;EKlqFM;IAOI,6BAAA;EL8pFV;EKrqFM;IAOI,+BAAA;ELiqFV;EKxqFM;IAOI,8BAAA;ELoqFV;EK3qFM;IAOI,oBAAA;ELuqFV;EK9qFM;IAOI,mBAAA;EL0qFV;EKjrFM;IAOI,mBAAA;EL6qFV;EKprFM;IAOI,mBAAA;ELgrFV;EKvrFM;IAOI,mBAAA;ELmrFV;EK1rFM;IAOI,mBAAA;ELsrFV;EK7rFM;IAOI,mBAAA;ELyrFV;EKhsFM;IAOI,mBAAA;EL4rFV;EKnsFM;IAOI,oBAAA;EL+rFV;EKtsFM;IAOI,0BAAA;ELksFV;EKzsFM;IAOI,yBAAA;ELqsFV;EK5sFM;IAOI,uBAAA;ELwsFV;EK/sFM;IAOI,yBAAA;EL2sFV;EKltFM;IAOI,uBAAA;EL8sFV;EKrtFM;IAOI,uBAAA;ELitFV;EKxtFM;IAOI,yBAAA;IAAA,0BAAA;ELqtFV;EK5tFM;IAOI,+BAAA;IAAA,gCAAA;ELytFV;EKhuFM;IAOI,8BAAA;IAAA,+BAAA;EL6tFV;EKpuFM;IAOI,4BAAA;IAAA,6BAAA;ELiuFV;EKxuFM;IAOI,8BAAA;IAAA,+BAAA;ELquFV;EK5uFM;IAOI,4BAAA;IAAA,6BAAA;ELyuFV;EKhvFM;IAOI,4BAAA;IAAA,6BAAA;EL6uFV;EKpvFM;IAOI,wBAAA;IAAA,2BAAA;ELivFV;EKxvFM;IAOI,8BAAA;IAAA,iCAAA;ELqvFV;EK5vFM;IAOI,6BAAA;IAAA,gCAAA;ELyvFV;EKhwFM;IAOI,2BAAA;IAAA,8BAAA;EL6vFV;EKpwFM;IAOI,6BAAA;IAAA,gCAAA;ELiwFV;EKxwFM;IAOI,2BAAA;IAAA,8BAAA;ELqwFV;EK5wFM;IAOI,2BAAA;IAAA,8BAAA;ELywFV;EKhxFM;IAOI,wBAAA;EL4wFV;EKnxFM;IAOI,8BAAA;EL+wFV;EKtxFM;IAOI,6BAAA;ELkxFV;EKzxFM;IAOI,2BAAA;ELqxFV;EK5xFM;IAOI,6BAAA;ELwxFV;EK/xFM;IAOI,2BAAA;EL2xFV;EKlyFM;IAOI,2BAAA;EL8xFV;EKryFM;IAOI,yBAAA;ELiyFV;EKxyFM;IAOI,+BAAA;ELoyFV;EK3yFM;IAOI,8BAAA;ELuyFV;EK9yFM;IAOI,4BAAA;EL0yFV;EKjzFM;IAOI,8BAAA;EL6yFV;EKpzFM;IAOI,4BAAA;ELgzFV;EKvzFM;IAOI,4BAAA;ELmzFV;EK1zFM;IAOI,2BAAA;ELszFV;EK7zFM;IAOI,iCAAA;ELyzFV;EKh0FM;IAOI,gCAAA;EL4zFV;EKn0FM;IAOI,8BAAA;EL+zFV;EKt0FM;IAOI,gCAAA;ELk0FV;EKz0FM;IAOI,8BAAA;ELq0FV;EK50FM;IAOI,8BAAA;ELw0FV;EK/0FM;IAOI,0BAAA;EL20FV;EKl1FM;IAOI,gCAAA;EL80FV;EKr1FM;IAOI,+BAAA;ELi1FV;EKx1FM;IAOI,6BAAA;ELo1FV;EK31FM;IAOI,+BAAA;ELu1FV;EK91FM;IAOI,6BAAA;EL01FV;EKj2FM;IAOI,6BAAA;EL61FV;EKp2FM;IAOI,qBAAA;ELg2FV;EKv2FM;IAOI,2BAAA;ELm2FV;EK12FM;IAOI,0BAAA;ELs2FV;EK72FM;IAOI,wBAAA;ELy2FV;EKh3FM;IAOI,0BAAA;EL42FV;EKn3FM;IAOI,wBAAA;EL+2FV;EKt3FM;IAOI,0BAAA;IAAA,2BAAA;ELm3FV;EK13FM;IAOI,gCAAA;IAAA,iCAAA;ELu3FV;EK93FM;IAOI,+BAAA;IAAA,gCAAA;EL23FV;EKl4FM;IAOI,6BAAA;IAAA,8BAAA;EL+3FV;EKt4FM;IAOI,+BAAA;IAAA,gCAAA;ELm4FV;EK14FM;IAOI,6BAAA;IAAA,8BAAA;ELu4FV;EK94FM;IAOI,yBAAA;IAAA,4BAAA;EL24FV;EKl5FM;IAOI,+BAAA;IAAA,kCAAA;EL+4FV;EKt5FM;IAOI,8BAAA;IAAA,iCAAA;ELm5FV;EK15FM;IAOI,4BAAA;IAAA,+BAAA;ELu5FV;EK95FM;IAOI,8BAAA;IAAA,iCAAA;EL25FV;EKl6FM;IAOI,4BAAA;IAAA,+BAAA;EL+5FV;EKt6FM;IAOI,yBAAA;ELk6FV;EKz6FM;IAOI,+BAAA;ELq6FV;EK56FM;IAOI,8BAAA;ELw6FV;EK/6FM;IAOI,4BAAA;EL26FV;EKl7FM;IAOI,8BAAA;EL86FV;EKr7FM;IAOI,4BAAA;ELi7FV;EKx7FM;IAOI,0BAAA;ELo7FV;EK37FM;IAOI,gCAAA;ELu7FV;EK97FM;IAOI,+BAAA;EL07FV;EKj8FM;IAOI,6BAAA;EL67FV;EKp8FM;IAOI,+BAAA;ELg8FV;EKv8FM;IAOI,6BAAA;ELm8FV;EK18FM;IAOI,4BAAA;ELs8FV;EK78FM;IAOI,kCAAA;ELy8FV;EKh9FM;IAOI,iCAAA;EL48FV;EKn9FM;IAOI,+BAAA;EL+8FV;EKt9FM;IAOI,iCAAA;ELk9FV;EKz9FM;IAOI,+BAAA;ELq9FV;EK59FM;IAOI,2BAAA;ELw9FV;EK/9FM;IAOI,iCAAA;EL29FV;EKl+FM;IAOI,gCAAA;EL89FV;EKr+FM;IAOI,8BAAA;ELi+FV;EKx+FM;IAOI,gCAAA;ELo+FV;EK3+FM;IAOI,8BAAA;ELu+FV;AACF;ACl/FI;EIGI;IAOI,0BAAA;EL4+FV;EKn/FM;IAOI,gCAAA;EL++FV;EKt/FM;IAOI,yBAAA;ELk/FV;EKz/FM;IAOI,wBAAA;ELq/FV;EK5/FM;IAOI,+BAAA;ELw/FV;EK//FM;IAOI,yBAAA;EL2/FV;EKlgGM;IAOI,6BAAA;EL8/FV;EKrgGM;IAOI,8BAAA;ELigGV;EKxgGM;IAOI,wBAAA;ELogGV;EK3gGM;IAOI,+BAAA;ELugGV;EK9gGM;IAOI,wBAAA;EL0gGV;EKjhGM;IAOI,yBAAA;EL6gGV;EKphGM;IAOI,8BAAA;ELghGV;EKvhGM;IAOI,iCAAA;ELmhGV;EK1hGM;IAOI,sCAAA;ELshGV;EK7hGM;IAOI,yCAAA;ELyhGV;EKhiGM;IAOI,uBAAA;EL4hGV;EKniGM;IAOI,uBAAA;EL+hGV;EKtiGM;IAOI,yBAAA;ELkiGV;EKziGM;IAOI,yBAAA;ELqiGV;EK5iGM;IAOI,0BAAA;ELwiGV;EK/iGM;IAOI,4BAAA;EL2iGV;EKljGM;IAOI,kCAAA;EL8iGV;EKrjGM;IAOI,sCAAA;ELijGV;EKxjGM;IAOI,oCAAA;ELojGV;EK3jGM;IAOI,kCAAA;ELujGV;EK9jGM;IAOI,yCAAA;EL0jGV;EKjkGM;IAOI,wCAAA;EL6jGV;EKpkGM;IAOI,wCAAA;ELgkGV;EKvkGM;IAOI,kCAAA;ELmkGV;EK1kGM;IAOI,gCAAA;ELskGV;EK7kGM;IAOI,8BAAA;ELykGV;EKhlGM;IAOI,gCAAA;EL4kGV;EKnlGM;IAOI,+BAAA;EL+kGV;EKtlGM;IAOI,oCAAA;ELklGV;EKzlGM;IAOI,kCAAA;ELqlGV;EK5lGM;IAOI,gCAAA;ELwlGV;EK/lGM;IAOI,uCAAA;EL2lGV;EKlmGM;IAOI,sCAAA;EL8lGV;EKrmGM;IAOI,iCAAA;ELimGV;EKxmGM;IAOI,2BAAA;ELomGV;EK3mGM;IAOI,iCAAA;ELumGV;EK9mGM;IAOI,+BAAA;EL0mGV;EKjnGM;IAOI,6BAAA;EL6mGV;EKpnGM;IAOI,+BAAA;ELgnGV;EKvnGM;IAOI,8BAAA;ELmnGV;EK1nGM;IAOI,oBAAA;ELsnGV;EK7nGM;IAOI,mBAAA;ELynGV;EKhoGM;IAOI,mBAAA;EL4nGV;EKnoGM;IAOI,mBAAA;EL+nGV;EKtoGM;IAOI,mBAAA;ELkoGV;EKzoGM;IAOI,mBAAA;ELqoGV;EK5oGM;IAOI,mBAAA;ELwoGV;EK/oGM;IAOI,mBAAA;EL2oGV;EKlpGM;IAOI,oBAAA;EL8oGV;EKrpGM;IAOI,0BAAA;ELipGV;EKxpGM;IAOI,yBAAA;ELopGV;EK3pGM;IAOI,uBAAA;ELupGV;EK9pGM;IAOI,yBAAA;EL0pGV;EKjqGM;IAOI,uBAAA;EL6pGV;EKpqGM;IAOI,uBAAA;ELgqGV;EKvqGM;IAOI,yBAAA;IAAA,0BAAA;ELoqGV;EK3qGM;IAOI,+BAAA;IAAA,gCAAA;ELwqGV;EK/qGM;IAOI,8BAAA;IAAA,+BAAA;EL4qGV;EKnrGM;IAOI,4BAAA;IAAA,6BAAA;ELgrGV;EKvrGM;IAOI,8BAAA;IAAA,+BAAA;ELorGV;EK3rGM;IAOI,4BAAA;IAAA,6BAAA;ELwrGV;EK/rGM;IAOI,4BAAA;IAAA,6BAAA;EL4rGV;EKnsGM;IAOI,wBAAA;IAAA,2BAAA;ELgsGV;EKvsGM;IAOI,8BAAA;IAAA,iCAAA;ELosGV;EK3sGM;IAOI,6BAAA;IAAA,gCAAA;ELwsGV;EK/sGM;IAOI,2BAAA;IAAA,8BAAA;EL4sGV;EKntGM;IAOI,6BAAA;IAAA,gCAAA;ELgtGV;EKvtGM;IAOI,2BAAA;IAAA,8BAAA;ELotGV;EK3tGM;IAOI,2BAAA;IAAA,8BAAA;ELwtGV;EK/tGM;IAOI,wBAAA;EL2tGV;EKluGM;IAOI,8BAAA;EL8tGV;EKruGM;IAOI,6BAAA;ELiuGV;EKxuGM;IAOI,2BAAA;ELouGV;EK3uGM;IAOI,6BAAA;ELuuGV;EK9uGM;IAOI,2BAAA;EL0uGV;EKjvGM;IAOI,2BAAA;EL6uGV;EKpvGM;IAOI,yBAAA;ELgvGV;EKvvGM;IAOI,+BAAA;ELmvGV;EK1vGM;IAOI,8BAAA;ELsvGV;EK7vGM;IAOI,4BAAA;ELyvGV;EKhwGM;IAOI,8BAAA;EL4vGV;EKnwGM;IAOI,4BAAA;EL+vGV;EKtwGM;IAOI,4BAAA;ELkwGV;EKzwGM;IAOI,2BAAA;ELqwGV;EK5wGM;IAOI,iCAAA;ELwwGV;EK/wGM;IAOI,gCAAA;EL2wGV;EKlxGM;IAOI,8BAAA;EL8wGV;EKrxGM;IAOI,gCAAA;ELixGV;EKxxGM;IAOI,8BAAA;ELoxGV;EK3xGM;IAOI,8BAAA;ELuxGV;EK9xGM;IAOI,0BAAA;EL0xGV;EKjyGM;IAOI,gCAAA;EL6xGV;EKpyGM;IAOI,+BAAA;ELgyGV;EKvyGM;IAOI,6BAAA;ELmyGV;EK1yGM;IAOI,+BAAA;ELsyGV;EK7yGM;IAOI,6BAAA;ELyyGV;EKhzGM;IAOI,6BAAA;EL4yGV;EKnzGM;IAOI,qBAAA;EL+yGV;EKtzGM;IAOI,2BAAA;ELkzGV;EKzzGM;IAOI,0BAAA;ELqzGV;EK5zGM;IAOI,wBAAA;ELwzGV;EK/zGM;IAOI,0BAAA;EL2zGV;EKl0GM;IAOI,wBAAA;EL8zGV;EKr0GM;IAOI,0BAAA;IAAA,2BAAA;ELk0GV;EKz0GM;IAOI,gCAAA;IAAA,iCAAA;ELs0GV;EK70GM;IAOI,+BAAA;IAAA,gCAAA;EL00GV;EKj1GM;IAOI,6BAAA;IAAA,8BAAA;EL80GV;EKr1GM;IAOI,+BAAA;IAAA,gCAAA;ELk1GV;EKz1GM;IAOI,6BAAA;IAAA,8BAAA;ELs1GV;EK71GM;IAOI,yBAAA;IAAA,4BAAA;EL01GV;EKj2GM;IAOI,+BAAA;IAAA,kCAAA;EL81GV;EKr2GM;IAOI,8BAAA;IAAA,iCAAA;ELk2GV;EKz2GM;IAOI,4BAAA;IAAA,+BAAA;ELs2GV;EK72GM;IAOI,8BAAA;IAAA,iCAAA;EL02GV;EKj3GM;IAOI,4BAAA;IAAA,+BAAA;EL82GV;EKr3GM;IAOI,yBAAA;ELi3GV;EKx3GM;IAOI,+BAAA;ELo3GV;EK33GM;IAOI,8BAAA;ELu3GV;EK93GM;IAOI,4BAAA;EL03GV;EKj4GM;IAOI,8BAAA;EL63GV;EKp4GM;IAOI,4BAAA;ELg4GV;EKv4GM;IAOI,0BAAA;ELm4GV;EK14GM;IAOI,gCAAA;ELs4GV;EK74GM;IAOI,+BAAA;ELy4GV;EKh5GM;IAOI,6BAAA;EL44GV;EKn5GM;IAOI,+BAAA;EL+4GV;EKt5GM;IAOI,6BAAA;ELk5GV;EKz5GM;IAOI,4BAAA;ELq5GV;EK55GM;IAOI,kCAAA;ELw5GV;EK/5GM;IAOI,iCAAA;EL25GV;EKl6GM;IAOI,+BAAA;EL85GV;EKr6GM;IAOI,iCAAA;ELi6GV;EKx6GM;IAOI,+BAAA;ELo6GV;EK36GM;IAOI,2BAAA;ELu6GV;EK96GM;IAOI,iCAAA;EL06GV;EKj7GM;IAOI,gCAAA;EL66GV;EKp7GM;IAOI,8BAAA;ELg7GV;EKv7GM;IAOI,gCAAA;ELm7GV;EK17GM;IAOI,8BAAA;ELs7GV;AACF;ACj8GI;EIGI;IAOI,0BAAA;EL27GV;EKl8GM;IAOI,gCAAA;EL87GV;EKr8GM;IAOI,yBAAA;ELi8GV;EKx8GM;IAOI,wBAAA;ELo8GV;EK38GM;IAOI,+BAAA;ELu8GV;EK98GM;IAOI,yBAAA;EL08GV;EKj9GM;IAOI,6BAAA;EL68GV;EKp9GM;IAOI,8BAAA;ELg9GV;EKv9GM;IAOI,wBAAA;ELm9GV;EK19GM;IAOI,+BAAA;ELs9GV;EK79GM;IAOI,wBAAA;ELy9GV;EKh+GM;IAOI,yBAAA;EL49GV;EKn+GM;IAOI,8BAAA;EL+9GV;EKt+GM;IAOI,iCAAA;ELk+GV;EKz+GM;IAOI,sCAAA;ELq+GV;EK5+GM;IAOI,yCAAA;ELw+GV;EK/+GM;IAOI,uBAAA;EL2+GV;EKl/GM;IAOI,uBAAA;EL8+GV;EKr/GM;IAOI,yBAAA;ELi/GV;EKx/GM;IAOI,yBAAA;ELo/GV;EK3/GM;IAOI,0BAAA;ELu/GV;EK9/GM;IAOI,4BAAA;EL0/GV;EKjgHM;IAOI,kCAAA;EL6/GV;EKpgHM;IAOI,sCAAA;ELggHV;EKvgHM;IAOI,oCAAA;ELmgHV;EK1gHM;IAOI,kCAAA;ELsgHV;EK7gHM;IAOI,yCAAA;ELygHV;EKhhHM;IAOI,wCAAA;EL4gHV;EKnhHM;IAOI,wCAAA;EL+gHV;EKthHM;IAOI,kCAAA;ELkhHV;EKzhHM;IAOI,gCAAA;ELqhHV;EK5hHM;IAOI,8BAAA;ELwhHV;EK/hHM;IAOI,gCAAA;EL2hHV;EKliHM;IAOI,+BAAA;EL8hHV;EKriHM;IAOI,oCAAA;ELiiHV;EKxiHM;IAOI,kCAAA;ELoiHV;EK3iHM;IAOI,gCAAA;ELuiHV;EK9iHM;IAOI,uCAAA;EL0iHV;EKjjHM;IAOI,sCAAA;EL6iHV;EKpjHM;IAOI,iCAAA;ELgjHV;EKvjHM;IAOI,2BAAA;ELmjHV;EK1jHM;IAOI,iCAAA;ELsjHV;EK7jHM;IAOI,+BAAA;ELyjHV;EKhkHM;IAOI,6BAAA;EL4jHV;EKnkHM;IAOI,+BAAA;EL+jHV;EKtkHM;IAOI,8BAAA;ELkkHV;EKzkHM;IAOI,oBAAA;ELqkHV;EK5kHM;IAOI,mBAAA;ELwkHV;EK/kHM;IAOI,mBAAA;EL2kHV;EKllHM;IAOI,mBAAA;EL8kHV;EKrlHM;IAOI,mBAAA;ELilHV;EKxlHM;IAOI,mBAAA;ELolHV;EK3lHM;IAOI,mBAAA;ELulHV;EK9lHM;IAOI,mBAAA;EL0lHV;EKjmHM;IAOI,oBAAA;EL6lHV;EKpmHM;IAOI,0BAAA;ELgmHV;EKvmHM;IAOI,yBAAA;ELmmHV;EK1mHM;IAOI,uBAAA;ELsmHV;EK7mHM;IAOI,yBAAA;ELymHV;EKhnHM;IAOI,uBAAA;EL4mHV;EKnnHM;IAOI,uBAAA;EL+mHV;EKtnHM;IAOI,yBAAA;IAAA,0BAAA;ELmnHV;EK1nHM;IAOI,+BAAA;IAAA,gCAAA;ELunHV;EK9nHM;IAOI,8BAAA;IAAA,+BAAA;EL2nHV;EKloHM;IAOI,4BAAA;IAAA,6BAAA;EL+nHV;EKtoHM;IAOI,8BAAA;IAAA,+BAAA;ELmoHV;EK1oHM;IAOI,4BAAA;IAAA,6BAAA;ELuoHV;EK9oHM;IAOI,4BAAA;IAAA,6BAAA;EL2oHV;EKlpHM;IAOI,wBAAA;IAAA,2BAAA;EL+oHV;EKtpHM;IAOI,8BAAA;IAAA,iCAAA;ELmpHV;EK1pHM;IAOI,6BAAA;IAAA,gCAAA;ELupHV;EK9pHM;IAOI,2BAAA;IAAA,8BAAA;EL2pHV;EKlqHM;IAOI,6BAAA;IAAA,gCAAA;EL+pHV;EKtqHM;IAOI,2BAAA;IAAA,8BAAA;ELmqHV;EK1qHM;IAOI,2BAAA;IAAA,8BAAA;ELuqHV;EK9qHM;IAOI,wBAAA;EL0qHV;EKjrHM;IAOI,8BAAA;EL6qHV;EKprHM;IAOI,6BAAA;ELgrHV;EKvrHM;IAOI,2BAAA;ELmrHV;EK1rHM;IAOI,6BAAA;ELsrHV;EK7rHM;IAOI,2BAAA;ELyrHV;EKhsHM;IAOI,2BAAA;EL4rHV;EKnsHM;IAOI,yBAAA;EL+rHV;EKtsHM;IAOI,+BAAA;ELksHV;EKzsHM;IAOI,8BAAA;ELqsHV;EK5sHM;IAOI,4BAAA;ELwsHV;EK/sHM;IAOI,8BAAA;EL2sHV;EKltHM;IAOI,4BAAA;EL8sHV;EKrtHM;IAOI,4BAAA;ELitHV;EKxtHM;IAOI,2BAAA;ELotHV;EK3tHM;IAOI,iCAAA;ELutHV;EK9tHM;IAOI,gCAAA;EL0tHV;EKjuHM;IAOI,8BAAA;EL6tHV;EKpuHM;IAOI,gCAAA;ELguHV;EKvuHM;IAOI,8BAAA;ELmuHV;EK1uHM;IAOI,8BAAA;ELsuHV;EK7uHM;IAOI,0BAAA;ELyuHV;EKhvHM;IAOI,gCAAA;EL4uHV;EKnvHM;IAOI,+BAAA;EL+uHV;EKtvHM;IAOI,6BAAA;ELkvHV;EKzvHM;IAOI,+BAAA;ELqvHV;EK5vHM;IAOI,6BAAA;ELwvHV;EK/vHM;IAOI,6BAAA;EL2vHV;EKlwHM;IAOI,qBAAA;EL8vHV;EKrwHM;IAOI,2BAAA;ELiwHV;EKxwHM;IAOI,0BAAA;ELowHV;EK3wHM;IAOI,wBAAA;ELuwHV;EK9wHM;IAOI,0BAAA;EL0wHV;EKjxHM;IAOI,wBAAA;EL6wHV;EKpxHM;IAOI,0BAAA;IAAA,2BAAA;ELixHV;EKxxHM;IAOI,gCAAA;IAAA,iCAAA;ELqxHV;EK5xHM;IAOI,+BAAA;IAAA,gCAAA;ELyxHV;EKhyHM;IAOI,6BAAA;IAAA,8BAAA;EL6xHV;EKpyHM;IAOI,+BAAA;IAAA,gCAAA;ELiyHV;EKxyHM;IAOI,6BAAA;IAAA,8BAAA;ELqyHV;EK5yHM;IAOI,yBAAA;IAAA,4BAAA;ELyyHV;EKhzHM;IAOI,+BAAA;IAAA,kCAAA;EL6yHV;EKpzHM;IAOI,8BAAA;IAAA,iCAAA;ELizHV;EKxzHM;IAOI,4BAAA;IAAA,+BAAA;ELqzHV;EK5zHM;IAOI,8BAAA;IAAA,iCAAA;ELyzHV;EKh0HM;IAOI,4BAAA;IAAA,+BAAA;EL6zHV;EKp0HM;IAOI,yBAAA;ELg0HV;EKv0HM;IAOI,+BAAA;ELm0HV;EK10HM;IAOI,8BAAA;ELs0HV;EK70HM;IAOI,4BAAA;ELy0HV;EKh1HM;IAOI,8BAAA;EL40HV;EKn1HM;IAOI,4BAAA;EL+0HV;EKt1HM;IAOI,0BAAA;ELk1HV;EKz1HM;IAOI,gCAAA;ELq1HV;EK51HM;IAOI,+BAAA;ELw1HV;EK/1HM;IAOI,6BAAA;EL21HV;EKl2HM;IAOI,+BAAA;EL81HV;EKr2HM;IAOI,6BAAA;ELi2HV;EKx2HM;IAOI,4BAAA;ELo2HV;EK32HM;IAOI,kCAAA;ELu2HV;EK92HM;IAOI,iCAAA;EL02HV;EKj3HM;IAOI,+BAAA;EL62HV;EKp3HM;IAOI,iCAAA;ELg3HV;EKv3HM;IAOI,+BAAA;ELm3HV;EK13HM;IAOI,2BAAA;ELs3HV;EK73HM;IAOI,iCAAA;ELy3HV;EKh4HM;IAOI,gCAAA;EL43HV;EKn4HM;IAOI,8BAAA;EL+3HV;EKt4HM;IAOI,gCAAA;ELk4HV;EKz4HM;IAOI,8BAAA;ELq4HV;AACF;AMz6HA;ED4BQ;IAOI,0BAAA;EL04HV;EKj5HM;IAOI,gCAAA;EL64HV;EKp5HM;IAOI,yBAAA;ELg5HV;EKv5HM;IAOI,wBAAA;ELm5HV;EK15HM;IAOI,+BAAA;ELs5HV;EK75HM;IAOI,yBAAA;ELy5HV;EKh6HM;IAOI,6BAAA;EL45HV;EKn6HM;IAOI,8BAAA;EL+5HV;EKt6HM;IAOI,wBAAA;ELk6HV;EKz6HM;IAOI,+BAAA;ELq6HV;EK56HM;IAOI,wBAAA;ELw6HV;AACF","file":"bootstrap-grid.rtl.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-left: 0;\n }\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-left: 25%;\n }\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-left: 50%;\n }\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-left: 75%;\n }\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-right: 0 !important;\n }\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n .me-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n .ms-sm-auto {\n margin-left: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-right: 0 !important;\n }\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n .me-md-3 {\n margin-right: 1rem !important;\n }\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n .me-md-5 {\n margin-right: 3rem !important;\n }\n .me-md-auto {\n margin-right: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-left: 0 !important;\n }\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n .ms-md-auto {\n margin-left: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-right: 0 !important;\n }\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-left: 0 !important;\n }\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-right: 0 !important;\n }\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n .me-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n .ms-lg-auto {\n margin-left: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-right: 0 !important;\n }\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n .me-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n .ms-xl-auto {\n margin-left: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n .me-xxl-auto {\n margin-right: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap-grid.css.map */\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n// Color system\n\n// scss-docs-start gray-color-variables\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n// scss-docs-end gray-color-variables\n\n// fusv-disable\n// scss-docs-start gray-colors-map\n$grays: (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n) !default;\n// scss-docs-end gray-colors-map\n// fusv-enable\n\n// scss-docs-start color-variables\n$blue: #0d6efd !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #d63384 !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #198754 !default;\n$teal: #20c997 !default;\n$cyan: #0dcaf0 !default;\n// scss-docs-end color-variables\n\n// scss-docs-start colors-map\n$colors: (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"black\": $black,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n) !default;\n// scss-docs-end colors-map\n\n// The contrast ratio to reach against white, to determine if color changes from \"light\" to \"dark\". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.\n// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast\n$min-contrast-ratio: 4.5 !default;\n\n// Customize the light and dark text colors for use in our color contrast function.\n$color-contrast-dark: $black !default;\n$color-contrast-light: $white !default;\n\n// fusv-disable\n$blue-100: tint-color($blue, 80%) !default;\n$blue-200: tint-color($blue, 60%) !default;\n$blue-300: tint-color($blue, 40%) !default;\n$blue-400: tint-color($blue, 20%) !default;\n$blue-500: $blue !default;\n$blue-600: shade-color($blue, 20%) !default;\n$blue-700: shade-color($blue, 40%) !default;\n$blue-800: shade-color($blue, 60%) !default;\n$blue-900: shade-color($blue, 80%) !default;\n\n$indigo-100: tint-color($indigo, 80%) !default;\n$indigo-200: tint-color($indigo, 60%) !default;\n$indigo-300: tint-color($indigo, 40%) !default;\n$indigo-400: tint-color($indigo, 20%) !default;\n$indigo-500: $indigo !default;\n$indigo-600: shade-color($indigo, 20%) !default;\n$indigo-700: shade-color($indigo, 40%) !default;\n$indigo-800: shade-color($indigo, 60%) !default;\n$indigo-900: shade-color($indigo, 80%) !default;\n\n$purple-100: tint-color($purple, 80%) !default;\n$purple-200: tint-color($purple, 60%) !default;\n$purple-300: tint-color($purple, 40%) !default;\n$purple-400: tint-color($purple, 20%) !default;\n$purple-500: $purple !default;\n$purple-600: shade-color($purple, 20%) !default;\n$purple-700: shade-color($purple, 40%) !default;\n$purple-800: shade-color($purple, 60%) !default;\n$purple-900: shade-color($purple, 80%) !default;\n\n$pink-100: tint-color($pink, 80%) !default;\n$pink-200: tint-color($pink, 60%) !default;\n$pink-300: tint-color($pink, 40%) !default;\n$pink-400: tint-color($pink, 20%) !default;\n$pink-500: $pink !default;\n$pink-600: shade-color($pink, 20%) !default;\n$pink-700: shade-color($pink, 40%) !default;\n$pink-800: shade-color($pink, 60%) !default;\n$pink-900: shade-color($pink, 80%) !default;\n\n$red-100: tint-color($red, 80%) !default;\n$red-200: tint-color($red, 60%) !default;\n$red-300: tint-color($red, 40%) !default;\n$red-400: tint-color($red, 20%) !default;\n$red-500: $red !default;\n$red-600: shade-color($red, 20%) !default;\n$red-700: shade-color($red, 40%) !default;\n$red-800: shade-color($red, 60%) !default;\n$red-900: shade-color($red, 80%) !default;\n\n$orange-100: tint-color($orange, 80%) !default;\n$orange-200: tint-color($orange, 60%) !default;\n$orange-300: tint-color($orange, 40%) !default;\n$orange-400: tint-color($orange, 20%) !default;\n$orange-500: $orange !default;\n$orange-600: shade-color($orange, 20%) !default;\n$orange-700: shade-color($orange, 40%) !default;\n$orange-800: shade-color($orange, 60%) !default;\n$orange-900: shade-color($orange, 80%) !default;\n\n$yellow-100: tint-color($yellow, 80%) !default;\n$yellow-200: tint-color($yellow, 60%) !default;\n$yellow-300: tint-color($yellow, 40%) !default;\n$yellow-400: tint-color($yellow, 20%) !default;\n$yellow-500: $yellow !default;\n$yellow-600: shade-color($yellow, 20%) !default;\n$yellow-700: shade-color($yellow, 40%) !default;\n$yellow-800: shade-color($yellow, 60%) !default;\n$yellow-900: shade-color($yellow, 80%) !default;\n\n$green-100: tint-color($green, 80%) !default;\n$green-200: tint-color($green, 60%) !default;\n$green-300: tint-color($green, 40%) !default;\n$green-400: tint-color($green, 20%) !default;\n$green-500: $green !default;\n$green-600: shade-color($green, 20%) !default;\n$green-700: shade-color($green, 40%) !default;\n$green-800: shade-color($green, 60%) !default;\n$green-900: shade-color($green, 80%) !default;\n\n$teal-100: tint-color($teal, 80%) !default;\n$teal-200: tint-color($teal, 60%) !default;\n$teal-300: tint-color($teal, 40%) !default;\n$teal-400: tint-color($teal, 20%) !default;\n$teal-500: $teal !default;\n$teal-600: shade-color($teal, 20%) !default;\n$teal-700: shade-color($teal, 40%) !default;\n$teal-800: shade-color($teal, 60%) !default;\n$teal-900: shade-color($teal, 80%) !default;\n\n$cyan-100: tint-color($cyan, 80%) !default;\n$cyan-200: tint-color($cyan, 60%) !default;\n$cyan-300: tint-color($cyan, 40%) !default;\n$cyan-400: tint-color($cyan, 20%) !default;\n$cyan-500: $cyan !default;\n$cyan-600: shade-color($cyan, 20%) !default;\n$cyan-700: shade-color($cyan, 40%) !default;\n$cyan-800: shade-color($cyan, 60%) !default;\n$cyan-900: shade-color($cyan, 80%) !default;\n\n$blues: (\n \"blue-100\": $blue-100,\n \"blue-200\": $blue-200,\n \"blue-300\": $blue-300,\n \"blue-400\": $blue-400,\n \"blue-500\": $blue-500,\n \"blue-600\": $blue-600,\n \"blue-700\": $blue-700,\n \"blue-800\": $blue-800,\n \"blue-900\": $blue-900\n) !default;\n\n$indigos: (\n \"indigo-100\": $indigo-100,\n \"indigo-200\": $indigo-200,\n \"indigo-300\": $indigo-300,\n \"indigo-400\": $indigo-400,\n \"indigo-500\": $indigo-500,\n \"indigo-600\": $indigo-600,\n \"indigo-700\": $indigo-700,\n \"indigo-800\": $indigo-800,\n \"indigo-900\": $indigo-900\n) !default;\n\n$purples: (\n \"purple-100\": $purple-100,\n \"purple-200\": $purple-200,\n \"purple-300\": $purple-300,\n \"purple-400\": $purple-400,\n \"purple-500\": $purple-500,\n \"purple-600\": $purple-600,\n \"purple-700\": $purple-700,\n \"purple-800\": $purple-800,\n \"purple-900\": $purple-900\n) !default;\n\n$pinks: (\n \"pink-100\": $pink-100,\n \"pink-200\": $pink-200,\n \"pink-300\": $pink-300,\n \"pink-400\": $pink-400,\n \"pink-500\": $pink-500,\n \"pink-600\": $pink-600,\n \"pink-700\": $pink-700,\n \"pink-800\": $pink-800,\n \"pink-900\": $pink-900\n) !default;\n\n$reds: (\n \"red-100\": $red-100,\n \"red-200\": $red-200,\n \"red-300\": $red-300,\n \"red-400\": $red-400,\n \"red-500\": $red-500,\n \"red-600\": $red-600,\n \"red-700\": $red-700,\n \"red-800\": $red-800,\n \"red-900\": $red-900\n) !default;\n\n$oranges: (\n \"orange-100\": $orange-100,\n \"orange-200\": $orange-200,\n \"orange-300\": $orange-300,\n \"orange-400\": $orange-400,\n \"orange-500\": $orange-500,\n \"orange-600\": $orange-600,\n \"orange-700\": $orange-700,\n \"orange-800\": $orange-800,\n \"orange-900\": $orange-900\n) !default;\n\n$yellows: (\n \"yellow-100\": $yellow-100,\n \"yellow-200\": $yellow-200,\n \"yellow-300\": $yellow-300,\n \"yellow-400\": $yellow-400,\n \"yellow-500\": $yellow-500,\n \"yellow-600\": $yellow-600,\n \"yellow-700\": $yellow-700,\n \"yellow-800\": $yellow-800,\n \"yellow-900\": $yellow-900\n) !default;\n\n$greens: (\n \"green-100\": $green-100,\n \"green-200\": $green-200,\n \"green-300\": $green-300,\n \"green-400\": $green-400,\n \"green-500\": $green-500,\n \"green-600\": $green-600,\n \"green-700\": $green-700,\n \"green-800\": $green-800,\n \"green-900\": $green-900\n) !default;\n\n$teals: (\n \"teal-100\": $teal-100,\n \"teal-200\": $teal-200,\n \"teal-300\": $teal-300,\n \"teal-400\": $teal-400,\n \"teal-500\": $teal-500,\n \"teal-600\": $teal-600,\n \"teal-700\": $teal-700,\n \"teal-800\": $teal-800,\n \"teal-900\": $teal-900\n) !default;\n\n$cyans: (\n \"cyan-100\": $cyan-100,\n \"cyan-200\": $cyan-200,\n \"cyan-300\": $cyan-300,\n \"cyan-400\": $cyan-400,\n \"cyan-500\": $cyan-500,\n \"cyan-600\": $cyan-600,\n \"cyan-700\": $cyan-700,\n \"cyan-800\": $cyan-800,\n \"cyan-900\": $cyan-900\n) !default;\n// fusv-enable\n\n// scss-docs-start theme-color-variables\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-900 !default;\n// scss-docs-end theme-color-variables\n\n// scss-docs-start theme-colors-map\n$theme-colors: (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n) !default;\n// scss-docs-end theme-colors-map\n\n// scss-docs-start theme-text-variables\n$primary-text-emphasis: shade-color($primary, 60%) !default;\n$secondary-text-emphasis: shade-color($secondary, 60%) !default;\n$success-text-emphasis: shade-color($success, 60%) !default;\n$info-text-emphasis: shade-color($info, 60%) !default;\n$warning-text-emphasis: shade-color($warning, 60%) !default;\n$danger-text-emphasis: shade-color($danger, 60%) !default;\n$light-text-emphasis: $gray-700 !default;\n$dark-text-emphasis: $gray-700 !default;\n// scss-docs-end theme-text-variables\n\n// scss-docs-start theme-bg-subtle-variables\n$primary-bg-subtle: tint-color($primary, 80%) !default;\n$secondary-bg-subtle: tint-color($secondary, 80%) !default;\n$success-bg-subtle: tint-color($success, 80%) !default;\n$info-bg-subtle: tint-color($info, 80%) !default;\n$warning-bg-subtle: tint-color($warning, 80%) !default;\n$danger-bg-subtle: tint-color($danger, 80%) !default;\n$light-bg-subtle: mix($gray-100, $white) !default;\n$dark-bg-subtle: $gray-400 !default;\n// scss-docs-end theme-bg-subtle-variables\n\n// scss-docs-start theme-border-subtle-variables\n$primary-border-subtle: tint-color($primary, 60%) !default;\n$secondary-border-subtle: tint-color($secondary, 60%) !default;\n$success-border-subtle: tint-color($success, 60%) !default;\n$info-border-subtle: tint-color($info, 60%) !default;\n$warning-border-subtle: tint-color($warning, 60%) !default;\n$danger-border-subtle: tint-color($danger, 60%) !default;\n$light-border-subtle: $gray-200 !default;\n$dark-border-subtle: $gray-500 !default;\n// scss-docs-end theme-border-subtle-variables\n\n// Characters which are escaped by the escape-svg function\n$escaped-characters: (\n (\"<\", \"%3c\"),\n (\">\", \"%3e\"),\n (\"#\", \"%23\"),\n (\"(\", \"%28\"),\n (\")\", \"%29\"),\n) !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-reduced-motion: true !default;\n$enable-smooth-scroll: true !default;\n$enable-grid-classes: true !default;\n$enable-container-classes: true !default;\n$enable-cssgrid: false !default;\n$enable-button-pointers: true !default;\n$enable-rfs: true !default;\n$enable-validation-icons: true !default;\n$enable-negative-margins: false !default;\n$enable-deprecation-messages: true !default;\n$enable-important-utilities: true !default;\n\n$enable-dark-mode: true !default;\n$color-mode-type: data !default; // `data` or `media-query`\n\n// Prefix for :root CSS variables\n\n$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`\n$prefix: $variable-prefix !default;\n\n// Gradient\n//\n// The gradient which is added to components if `$enable-gradients` is `true`\n// This gradient is also added to elements with `.bg-gradient`\n// scss-docs-start variable-gradient\n$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;\n// scss-docs-end variable-gradient\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// scss-docs-start spacer-variables-maps\n$spacer: 1rem !default;\n$spacers: (\n 0: 0,\n 1: $spacer * .25,\n 2: $spacer * .5,\n 3: $spacer,\n 4: $spacer * 1.5,\n 5: $spacer * 3,\n) !default;\n// scss-docs-end spacer-variables-maps\n\n// Position\n//\n// Define the edge positioning anchors of the position utilities.\n\n// scss-docs-start position-map\n$position-values: (\n 0: 0,\n 50: 50%,\n 100: 100%\n) !default;\n// scss-docs-end position-map\n\n// Body\n//\n// Settings for the `` element.\n\n$body-text-align: null !default;\n$body-color: $gray-900 !default;\n$body-bg: $white !default;\n\n$body-secondary-color: rgba($body-color, .75) !default;\n$body-secondary-bg: $gray-200 !default;\n\n$body-tertiary-color: rgba($body-color, .5) !default;\n$body-tertiary-bg: $gray-100 !default;\n\n$body-emphasis-color: $black !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: $primary !default;\n$link-decoration: underline !default;\n$link-shade-percentage: 20% !default;\n$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;\n$link-hover-decoration: null !default;\n\n$stretched-link-pseudo-element: after !default;\n$stretched-link-z-index: 1 !default;\n\n// Icon links\n// scss-docs-start icon-link-variables\n$icon-link-gap: .375rem !default;\n$icon-link-underline-offset: .25em !default;\n$icon-link-icon-size: 1em !default;\n$icon-link-icon-transition: .2s ease-in-out transform !default;\n$icon-link-icon-transform: translate3d(.25em, 0, 0) !default;\n// scss-docs-end icon-link-variables\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n// scss-docs-start grid-breakpoints\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px,\n xxl: 1400px\n) !default;\n// scss-docs-end grid-breakpoints\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints, \"$grid-breakpoints\");\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n// scss-docs-start container-max-widths\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px,\n xxl: 1320px\n) !default;\n// scss-docs-end container-max-widths\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 1.5rem !default;\n$grid-row-columns: 6 !default;\n\n// Container padding\n\n$container-padding-x: $grid-gutter-width !default;\n\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n// scss-docs-start border-variables\n$border-width: 1px !default;\n$border-widths: (\n 1: 1px,\n 2: 2px,\n 3: 3px,\n 4: 4px,\n 5: 5px\n) !default;\n$border-style: solid !default;\n$border-color: $gray-300 !default;\n$border-color-translucent: rgba($black, .175) !default;\n// scss-docs-end border-variables\n\n// scss-docs-start border-radius-variables\n$border-radius: .375rem !default;\n$border-radius-sm: .25rem !default;\n$border-radius-lg: .5rem !default;\n$border-radius-xl: 1rem !default;\n$border-radius-xxl: 2rem !default;\n$border-radius-pill: 50rem !default;\n// scss-docs-end border-radius-variables\n// fusv-disable\n$border-radius-2xl: $border-radius-xxl !default; // Deprecated in v5.3.0\n// fusv-enable\n\n// scss-docs-start box-shadow-variables\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;\n// scss-docs-end box-shadow-variables\n\n$component-active-color: $white !default;\n$component-active-bg: $primary !default;\n\n// scss-docs-start focus-ring-variables\n$focus-ring-width: .25rem !default;\n$focus-ring-opacity: .25 !default;\n$focus-ring-color: rgba($primary, $focus-ring-opacity) !default;\n$focus-ring-blur: 0 !default;\n$focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color !default;\n// scss-docs-end focus-ring-variables\n\n// scss-docs-start caret-variables\n$caret-width: .3em !default;\n$caret-vertical-align: $caret-width * .85 !default;\n$caret-spacing: $caret-width * .85 !default;\n// scss-docs-end caret-variables\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n// scss-docs-start collapse-transition\n$transition-collapse: height .35s ease !default;\n$transition-collapse-width: width .35s ease !default;\n// scss-docs-end collapse-transition\n\n// stylelint-disable function-disallowed-list\n// scss-docs-start aspect-ratios\n$aspect-ratios: (\n \"1x1\": 100%,\n \"4x3\": calc(3 / 4 * 100%),\n \"16x9\": calc(9 / 16 * 100%),\n \"21x9\": calc(9 / 21 * 100%)\n) !default;\n// scss-docs-end aspect-ratios\n// stylelint-enable function-disallowed-list\n\n// Typography\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// scss-docs-start font-variables\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n// stylelint-enable value-keyword-case\n$font-family-base: var(--#{$prefix}font-sans-serif) !default;\n$font-family-code: var(--#{$prefix}font-monospace) !default;\n\n// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins\n// $font-size-base affects the font size of the body text\n$font-size-root: null !default;\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-sm: $font-size-base * .875 !default;\n$font-size-lg: $font-size-base * 1.25 !default;\n\n$font-weight-lighter: lighter !default;\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-medium: 500 !default;\n$font-weight-semibold: 600 !default;\n$font-weight-bold: 700 !default;\n$font-weight-bolder: bolder !default;\n\n$font-weight-base: $font-weight-normal !default;\n\n$line-height-base: 1.5 !default;\n$line-height-sm: 1.25 !default;\n$line-height-lg: 2 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n// scss-docs-end font-variables\n\n// scss-docs-start font-sizes\n$font-sizes: (\n 1: $h1-font-size,\n 2: $h2-font-size,\n 3: $h3-font-size,\n 4: $h4-font-size,\n 5: $h5-font-size,\n 6: $h6-font-size\n) !default;\n// scss-docs-end font-sizes\n\n// scss-docs-start headings-variables\n$headings-margin-bottom: $spacer * .5 !default;\n$headings-font-family: null !default;\n$headings-font-style: null !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n// scss-docs-end headings-variables\n\n// scss-docs-start display-headings\n$display-font-sizes: (\n 1: 5rem,\n 2: 4.5rem,\n 3: 4rem,\n 4: 3.5rem,\n 5: 3rem,\n 6: 2.5rem\n) !default;\n\n$display-font-family: null !default;\n$display-font-style: null !default;\n$display-font-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n// scss-docs-end display-headings\n\n// scss-docs-start type-variables\n$lead-font-size: $font-size-base * 1.25 !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: .875em !default;\n\n$sub-sup-font-size: .75em !default;\n\n// fusv-disable\n$text-muted: var(--#{$prefix}secondary-color) !default; // Deprecated in 5.3.0\n// fusv-enable\n\n$initialism-font-size: $small-font-size !default;\n\n$blockquote-margin-y: $spacer !default;\n$blockquote-font-size: $font-size-base * 1.25 !default;\n$blockquote-footer-color: $gray-600 !default;\n$blockquote-footer-font-size: $small-font-size !default;\n\n$hr-margin-y: $spacer !default;\n$hr-color: inherit !default;\n\n// fusv-disable\n$hr-bg-color: null !default; // Deprecated in v5.2.0\n$hr-height: null !default; // Deprecated in v5.2.0\n// fusv-enable\n\n$hr-border-color: null !default; // Allows for inherited colors\n$hr-border-width: var(--#{$prefix}border-width) !default;\n$hr-opacity: .25 !default;\n\n// scss-docs-start vr-variables\n$vr-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end vr-variables\n\n$legend-margin-bottom: .5rem !default;\n$legend-font-size: 1.5rem !default;\n$legend-font-weight: null !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-padding: .1875em !default;\n$mark-color: $body-color !default;\n$mark-bg: $yellow-100 !default;\n// scss-docs-end type-variables\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n// scss-docs-start table-variables\n$table-cell-padding-y: .5rem !default;\n$table-cell-padding-x: .5rem !default;\n$table-cell-padding-y-sm: .25rem !default;\n$table-cell-padding-x-sm: .25rem !default;\n\n$table-cell-vertical-align: top !default;\n\n$table-color: var(--#{$prefix}emphasis-color) !default;\n$table-bg: var(--#{$prefix}body-bg) !default;\n$table-accent-bg: transparent !default;\n\n$table-th-font-weight: null !default;\n\n$table-striped-color: $table-color !default;\n$table-striped-bg-factor: .05 !default;\n$table-striped-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-striped-bg-factor) !default;\n\n$table-active-color: $table-color !default;\n$table-active-bg-factor: .1 !default;\n$table-active-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-active-bg-factor) !default;\n\n$table-hover-color: $table-color !default;\n$table-hover-bg-factor: .075 !default;\n$table-hover-bg: rgba(var(--#{$prefix}emphasis-color-rgb), $table-hover-bg-factor) !default;\n\n$table-border-factor: .2 !default;\n$table-border-width: var(--#{$prefix}border-width) !default;\n$table-border-color: var(--#{$prefix}border-color) !default;\n\n$table-striped-order: odd !default;\n$table-striped-columns-order: even !default;\n\n$table-group-separator-color: currentcolor !default;\n\n$table-caption-color: var(--#{$prefix}secondary-color) !default;\n\n$table-bg-scale: -80% !default;\n// scss-docs-end table-variables\n\n// scss-docs-start table-loop\n$table-variants: (\n \"primary\": shift-color($primary, $table-bg-scale),\n \"secondary\": shift-color($secondary, $table-bg-scale),\n \"success\": shift-color($success, $table-bg-scale),\n \"info\": shift-color($info, $table-bg-scale),\n \"warning\": shift-color($warning, $table-bg-scale),\n \"danger\": shift-color($danger, $table-bg-scale),\n \"light\": $light,\n \"dark\": $dark,\n) !default;\n// scss-docs-end table-loop\n\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n// scss-docs-start input-btn-variables\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-font-family: null !default;\n$input-btn-font-size: $font-size-base !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: $focus-ring-width !default;\n$input-btn-focus-color-opacity: $focus-ring-opacity !default;\n$input-btn-focus-color: $focus-ring-color !default;\n$input-btn-focus-blur: $focus-ring-blur !default;\n$input-btn-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-font-size-sm: $font-size-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-font-size-lg: $font-size-lg !default;\n\n$input-btn-border-width: var(--#{$prefix}border-width) !default;\n// scss-docs-end input-btn-variables\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n// scss-docs-start btn-variables\n$btn-color: var(--#{$prefix}body-color) !default;\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-font-family: $input-btn-font-family !default;\n$btn-font-size: $input-btn-font-size !default;\n$btn-line-height: $input-btn-line-height !default;\n$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-font-size-sm: $input-btn-font-size-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-font-size-lg: $input-btn-font-size-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-color: var(--#{$prefix}link-color) !default;\n$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$btn-link-disabled-color: $gray-600 !default;\n$btn-link-focus-shadow-rgb: to-rgb(mix(color-contrast($link-color), $link-color, 15%)) !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: var(--#{$prefix}border-radius) !default;\n$btn-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$btn-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$btn-hover-bg-shade-amount: 15% !default;\n$btn-hover-bg-tint-amount: 15% !default;\n$btn-hover-border-shade-amount: 20% !default;\n$btn-hover-border-tint-amount: 10% !default;\n$btn-active-bg-shade-amount: 20% !default;\n$btn-active-bg-tint-amount: 20% !default;\n$btn-active-border-shade-amount: 25% !default;\n$btn-active-border-tint-amount: 10% !default;\n// scss-docs-end btn-variables\n\n\n// Forms\n\n// scss-docs-start form-text-variables\n$form-text-margin-top: .25rem !default;\n$form-text-font-size: $small-font-size !default;\n$form-text-font-style: null !default;\n$form-text-font-weight: null !default;\n$form-text-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end form-text-variables\n\n// scss-docs-start form-label-variables\n$form-label-margin-bottom: .5rem !default;\n$form-label-font-size: null !default;\n$form-label-font-style: null !default;\n$form-label-font-weight: null !default;\n$form-label-color: null !default;\n// scss-docs-end form-label-variables\n\n// scss-docs-start form-input-variables\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-font-family: $input-btn-font-family !default;\n$input-font-size: $input-btn-font-size !default;\n$input-font-weight: $font-weight-base !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-font-size-sm: $input-btn-font-size-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-font-size-lg: $input-btn-font-size-lg !default;\n\n$input-bg: var(--#{$prefix}body-bg) !default;\n$input-disabled-color: null !default;\n$input-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$input-disabled-border-color: null !default;\n\n$input-color: var(--#{$prefix}body-color) !default;\n$input-border-color: var(--#{$prefix}border-color) !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$input-border-radius: var(--#{$prefix}border-radius) !default;\n$input-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$input-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: tint-color($component-active-bg, 50%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: var(--#{$prefix}secondary-color) !default;\n$input-plaintext-color: var(--#{$prefix}body-color) !default;\n\n$input-height-border: calc(#{$input-border-width} * 2) !default; // stylelint-disable-line function-disallowed-list\n\n$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;\n$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;\n$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;\n\n$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;\n$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;\n$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-color-width: 3rem !default;\n// scss-docs-end form-input-variables\n\n// scss-docs-start form-check-variables\n$form-check-input-width: 1em !default;\n$form-check-min-height: $font-size-base * $line-height-base !default;\n$form-check-padding-start: $form-check-input-width + .5em !default;\n$form-check-margin-bottom: .125rem !default;\n$form-check-label-color: null !default;\n$form-check-label-cursor: null !default;\n$form-check-transition: null !default;\n\n$form-check-input-active-filter: brightness(90%) !default;\n\n$form-check-input-bg: $input-bg !default;\n$form-check-input-border: var(--#{$prefix}border-width) solid var(--#{$prefix}border-color) !default;\n$form-check-input-border-radius: .25em !default;\n$form-check-radio-border-radius: 50% !default;\n$form-check-input-focus-border: $input-focus-border-color !default;\n$form-check-input-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$form-check-input-checked-color: $component-active-color !default;\n$form-check-input-checked-bg-color: $component-active-bg !default;\n$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;\n$form-check-input-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-check-radio-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-indeterminate-color: $component-active-color !default;\n$form-check-input-indeterminate-bg-color: $component-active-bg !default;\n$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;\n$form-check-input-indeterminate-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-check-input-disabled-opacity: .5 !default;\n$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;\n$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;\n\n$form-check-inline-margin-end: 1rem !default;\n// scss-docs-end form-check-variables\n\n// scss-docs-start form-switch-variables\n$form-switch-color: rgba($black, .25) !default;\n$form-switch-width: 2em !default;\n$form-switch-padding-start: $form-switch-width + .5em !default;\n$form-switch-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-border-radius: $form-switch-width !default;\n$form-switch-transition: background-position .15s ease-in-out !default;\n\n$form-switch-focus-color: $input-focus-border-color !default;\n$form-switch-focus-bg-image: url(\"data:image/svg+xml,\") !default;\n\n$form-switch-checked-color: $component-active-color !default;\n$form-switch-checked-bg-image: url(\"data:image/svg+xml,\") !default;\n$form-switch-checked-bg-position: right center !default;\n// scss-docs-end form-switch-variables\n\n// scss-docs-start input-group-variables\n$input-group-addon-padding-y: $input-padding-y !default;\n$input-group-addon-padding-x: $input-padding-x !default;\n$input-group-addon-font-weight: $input-font-weight !default;\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: var(--#{$prefix}tertiary-bg) !default;\n$input-group-addon-border-color: $input-border-color !default;\n// scss-docs-end input-group-variables\n\n// scss-docs-start form-select-variables\n$form-select-padding-y: $input-padding-y !default;\n$form-select-padding-x: $input-padding-x !default;\n$form-select-font-family: $input-font-family !default;\n$form-select-font-size: $input-font-size !default;\n$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image\n$form-select-font-weight: $input-font-weight !default;\n$form-select-line-height: $input-line-height !default;\n$form-select-color: $input-color !default;\n$form-select-bg: $input-bg !default;\n$form-select-disabled-color: null !default;\n$form-select-disabled-bg: $input-disabled-bg !default;\n$form-select-disabled-border-color: $input-disabled-border-color !default;\n$form-select-bg-position: right $form-select-padding-x center !default;\n$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions\n$form-select-indicator-color: $gray-800 !default;\n$form-select-indicator: url(\"data:image/svg+xml,\") !default;\n\n$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;\n$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;\n$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;\n\n$form-select-border-width: $input-border-width !default;\n$form-select-border-color: $input-border-color !default;\n$form-select-border-radius: $input-border-radius !default;\n$form-select-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-select-focus-border-color: $input-focus-border-color !default;\n$form-select-focus-width: $input-focus-width !default;\n$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;\n\n$form-select-padding-y-sm: $input-padding-y-sm !default;\n$form-select-padding-x-sm: $input-padding-x-sm !default;\n$form-select-font-size-sm: $input-font-size-sm !default;\n$form-select-border-radius-sm: $input-border-radius-sm !default;\n\n$form-select-padding-y-lg: $input-padding-y-lg !default;\n$form-select-padding-x-lg: $input-padding-x-lg !default;\n$form-select-font-size-lg: $input-font-size-lg !default;\n$form-select-border-radius-lg: $input-border-radius-lg !default;\n\n$form-select-transition: $input-transition !default;\n// scss-docs-end form-select-variables\n\n// scss-docs-start form-range-variables\n$form-range-track-width: 100% !default;\n$form-range-track-height: .5rem !default;\n$form-range-track-cursor: pointer !default;\n$form-range-track-bg: var(--#{$prefix}secondary-bg) !default;\n$form-range-track-border-radius: 1rem !default;\n$form-range-track-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n\n$form-range-thumb-width: 1rem !default;\n$form-range-thumb-height: $form-range-thumb-width !default;\n$form-range-thumb-bg: $component-active-bg !default;\n$form-range-thumb-border: 0 !default;\n$form-range-thumb-border-radius: 1rem !default;\n$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;\n$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge\n$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;\n$form-range-thumb-disabled-bg: var(--#{$prefix}secondary-color) !default;\n$form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n// scss-docs-end form-range-variables\n\n// scss-docs-start form-file-variables\n$form-file-button-color: $input-color !default;\n$form-file-button-bg: var(--#{$prefix}tertiary-bg) !default;\n$form-file-button-hover-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end form-file-variables\n\n// scss-docs-start form-floating-variables\n$form-floating-height: add(3.5rem, $input-height-border) !default;\n$form-floating-line-height: 1.25 !default;\n$form-floating-padding-x: $input-padding-x !default;\n$form-floating-padding-y: 1rem !default;\n$form-floating-input-padding-t: 1.625rem !default;\n$form-floating-input-padding-b: .625rem !default;\n$form-floating-label-height: 1.5em !default;\n$form-floating-label-opacity: .65 !default;\n$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;\n$form-floating-label-disabled-color: $gray-600 !default;\n$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;\n// scss-docs-end form-floating-variables\n\n// Form validation\n\n// scss-docs-start form-feedback-variables\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $form-text-font-size !default;\n$form-feedback-font-style: $form-text-font-style !default;\n$form-feedback-valid-color: $success !default;\n$form-feedback-invalid-color: $danger !default;\n\n$form-feedback-icon-valid-color: $form-feedback-valid-color !default;\n$form-feedback-icon-valid: url(\"data:image/svg+xml,\") !default;\n$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;\n$form-feedback-icon-invalid: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end form-feedback-variables\n\n// scss-docs-start form-validation-colors\n$form-valid-color: $form-feedback-valid-color !default;\n$form-valid-border-color: $form-feedback-valid-color !default;\n$form-invalid-color: $form-feedback-invalid-color !default;\n$form-invalid-border-color: $form-feedback-invalid-color !default;\n// scss-docs-end form-validation-colors\n\n// scss-docs-start form-validation-states\n$form-validation-states: (\n \"valid\": (\n \"color\": var(--#{$prefix}form-valid-color),\n \"icon\": $form-feedback-icon-valid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}success),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}success-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-valid-border-color),\n ),\n \"invalid\": (\n \"color\": var(--#{$prefix}form-invalid-color),\n \"icon\": $form-feedback-icon-invalid,\n \"tooltip-color\": #fff,\n \"tooltip-bg-color\": var(--#{$prefix}danger),\n \"focus-box-shadow\": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}danger-rgb), $input-btn-focus-color-opacity),\n \"border-color\": var(--#{$prefix}form-invalid-border-color),\n )\n) !default;\n// scss-docs-end form-validation-states\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n// scss-docs-start zindex-stack\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-offcanvas-backdrop: 1040 !default;\n$zindex-offcanvas: 1045 !default;\n$zindex-modal-backdrop: 1050 !default;\n$zindex-modal: 1055 !default;\n$zindex-popover: 1070 !default;\n$zindex-tooltip: 1080 !default;\n$zindex-toast: 1090 !default;\n// scss-docs-end zindex-stack\n\n// scss-docs-start zindex-levels-map\n$zindex-levels: (\n n1: -1,\n 0: 0,\n 1: 1,\n 2: 2,\n 3: 3\n) !default;\n// scss-docs-end zindex-levels-map\n\n\n// Navs\n\n// scss-docs-start nav-variables\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-font-size: null !default;\n$nav-link-font-weight: null !default;\n$nav-link-color: var(--#{$prefix}link-color) !default;\n$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;\n$nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;\n$nav-link-disabled-color: var(--#{$prefix}secondary-color) !default;\n$nav-link-focus-box-shadow: $focus-ring-box-shadow !default;\n\n$nav-tabs-border-color: var(--#{$prefix}border-color) !default;\n$nav-tabs-border-width: var(--#{$prefix}border-width) !default;\n$nav-tabs-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-tabs-link-hover-border-color: var(--#{$prefix}secondary-bg) var(--#{$prefix}secondary-bg) $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: var(--#{$prefix}emphasis-color) !default;\n$nav-tabs-link-active-bg: var(--#{$prefix}body-bg) !default;\n$nav-tabs-link-active-border-color: var(--#{$prefix}border-color) var(--#{$prefix}border-color) $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: var(--#{$prefix}border-radius) !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n$nav-underline-gap: 1rem !default;\n$nav-underline-border-width: .125rem !default;\n$nav-underline-link-active-color: var(--#{$prefix}emphasis-color) !default;\n// scss-docs-end nav-variables\n\n\n// Navbar\n\n// scss-docs-start navbar-variables\n$navbar-padding-y: $spacer * .5 !default;\n$navbar-padding-x: null !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;\n$navbar-brand-margin-end: 1rem !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n$navbar-toggler-focus-width: $btn-focus-width !default;\n$navbar-toggler-transition: box-shadow .15s ease-in-out !default;\n\n$navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .65) !default;\n$navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .8) !default;\n$navbar-light-active-color: rgba(var(--#{$prefix}emphasis-color-rgb), 1) !default;\n$navbar-light-disabled-color: rgba(var(--#{$prefix}emphasis-color-rgb), .3) !default;\n$navbar-light-icon-color: rgba($body-color, .75) !default;\n$navbar-light-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-light-toggler-border-color: rgba(var(--#{$prefix}emphasis-color-rgb), .15) !default;\n$navbar-light-brand-color: $navbar-light-active-color !default;\n$navbar-light-brand-hover-color: $navbar-light-active-color !default;\n// scss-docs-end navbar-variables\n\n// scss-docs-start navbar-dark-variables\n$navbar-dark-color: rgba($white, .55) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-icon-color: $navbar-dark-color !default;\n$navbar-dark-toggler-icon-bg: url(\"data:image/svg+xml,\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n$navbar-dark-brand-color: $navbar-dark-active-color !default;\n$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;\n// scss-docs-end navbar-dark-variables\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n// scss-docs-start dropdown-variables\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-x: 0 !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-font-size: $font-size-base !default;\n$dropdown-color: var(--#{$prefix}body-color) !default;\n$dropdown-bg: var(--#{$prefix}body-bg) !default;\n$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;\n$dropdown-border-radius: var(--#{$prefix}border-radius) !default;\n$dropdown-border-width: var(--#{$prefix}border-width) !default;\n$dropdown-inner-border-radius: calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$dropdown-divider-bg: $dropdown-border-color !default;\n$dropdown-divider-margin-y: $spacer * .5 !default;\n$dropdown-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$dropdown-link-color: var(--#{$prefix}body-color) !default;\n$dropdown-link-hover-color: $dropdown-link-color !default;\n$dropdown-link-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: var(--#{$prefix}tertiary-color) !default;\n\n$dropdown-item-padding-y: $spacer * .25 !default;\n$dropdown-item-padding-x: $spacer !default;\n\n$dropdown-header-color: $gray-600 !default;\n$dropdown-header-padding-x: $dropdown-item-padding-x !default;\n$dropdown-header-padding-y: $dropdown-padding-y !default;\n// fusv-disable\n$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0\n// fusv-enable\n// scss-docs-end dropdown-variables\n\n// scss-docs-start dropdown-dark-variables\n$dropdown-dark-color: $gray-300 !default;\n$dropdown-dark-bg: $gray-800 !default;\n$dropdown-dark-border-color: $dropdown-border-color !default;\n$dropdown-dark-divider-bg: $dropdown-divider-bg !default;\n$dropdown-dark-box-shadow: null !default;\n$dropdown-dark-link-color: $dropdown-dark-color !default;\n$dropdown-dark-link-hover-color: $white !default;\n$dropdown-dark-link-hover-bg: rgba($white, .15) !default;\n$dropdown-dark-link-active-color: $dropdown-link-active-color !default;\n$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;\n$dropdown-dark-link-disabled-color: $gray-500 !default;\n$dropdown-dark-header-color: $gray-500 !default;\n// scss-docs-end dropdown-dark-variables\n\n\n// Pagination\n\n// scss-docs-start pagination-variables\n$pagination-padding-y: .375rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n\n$pagination-font-size: $font-size-base !default;\n\n$pagination-color: var(--#{$prefix}link-color) !default;\n$pagination-bg: var(--#{$prefix}body-bg) !default;\n$pagination-border-radius: var(--#{$prefix}border-radius) !default;\n$pagination-border-width: var(--#{$prefix}border-width) !default;\n$pagination-margin-start: calc(#{$pagination-border-width} * -1) !default; // stylelint-disable-line function-disallowed-list\n$pagination-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-focus-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-focus-box-shadow: $focus-ring-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;\n$pagination-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$pagination-hover-border-color: var(--#{$prefix}border-color) !default; // Todo in v6: remove this?\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $component-active-bg !default;\n\n$pagination-disabled-color: var(--#{$prefix}secondary-color) !default;\n$pagination-disabled-bg: var(--#{$prefix}secondary-bg) !default;\n$pagination-disabled-border-color: var(--#{$prefix}border-color) !default;\n\n$pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$pagination-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;\n$pagination-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;\n// scss-docs-end pagination-variables\n\n\n// Placeholders\n\n// scss-docs-start placeholders\n$placeholder-opacity-max: .5 !default;\n$placeholder-opacity-min: .2 !default;\n// scss-docs-end placeholders\n\n// Cards\n\n// scss-docs-start card-variables\n$card-spacer-y: $spacer !default;\n$card-spacer-x: $spacer !default;\n$card-title-spacer-y: $spacer * .5 !default;\n$card-title-color: null !default;\n$card-subtitle-color: null !default;\n$card-border-width: var(--#{$prefix}border-width) !default;\n$card-border-color: var(--#{$prefix}border-color-translucent) !default;\n$card-border-radius: var(--#{$prefix}border-radius) !default;\n$card-box-shadow: null !default;\n$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;\n$card-cap-padding-y: $card-spacer-y * .5 !default;\n$card-cap-padding-x: $card-spacer-x !default;\n$card-cap-bg: rgba(var(--#{$prefix}body-color-rgb), .03) !default;\n$card-cap-color: null !default;\n$card-height: null !default;\n$card-color: null !default;\n$card-bg: var(--#{$prefix}body-bg) !default;\n$card-img-overlay-padding: $spacer !default;\n$card-group-margin: $grid-gutter-width * .5 !default;\n// scss-docs-end card-variables\n\n// Accordion\n\n// scss-docs-start accordion-variables\n$accordion-padding-y: 1rem !default;\n$accordion-padding-x: 1.25rem !default;\n$accordion-color: var(--#{$prefix}body-color) !default;\n$accordion-bg: var(--#{$prefix}body-bg) !default;\n$accordion-border-width: var(--#{$prefix}border-width) !default;\n$accordion-border-color: var(--#{$prefix}border-color) !default;\n$accordion-border-radius: var(--#{$prefix}border-radius) !default;\n$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;\n\n$accordion-body-padding-y: $accordion-padding-y !default;\n$accordion-body-padding-x: $accordion-padding-x !default;\n\n$accordion-button-padding-y: $accordion-padding-y !default;\n$accordion-button-padding-x: $accordion-padding-x !default;\n$accordion-button-color: var(--#{$prefix}body-color) !default;\n$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;\n$accordion-transition: $btn-transition, border-radius .15s ease !default;\n$accordion-button-active-bg: var(--#{$prefix}primary-bg-subtle) !default;\n$accordion-button-active-color: var(--#{$prefix}primary-text-emphasis) !default;\n\n// fusv-disable\n$accordion-button-focus-border-color: $input-focus-border-color !default; // Deprecated in v5.3.3\n// fusv-enable\n$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;\n\n$accordion-icon-width: 1.25rem !default;\n$accordion-icon-color: $body-color !default;\n$accordion-icon-active-color: $primary-text-emphasis !default;\n$accordion-icon-transition: transform .2s ease-in-out !default;\n$accordion-icon-transform: rotate(-180deg) !default;\n\n$accordion-button-icon: url(\"data:image/svg+xml,\") !default;\n$accordion-button-active-icon: url(\"data:image/svg+xml,\") !default;\n// scss-docs-end accordion-variables\n\n// Tooltips\n\n// scss-docs-start tooltip-variables\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: var(--#{$prefix}body-bg) !default;\n$tooltip-bg: var(--#{$prefix}emphasis-color) !default;\n$tooltip-border-radius: var(--#{$prefix}border-radius) !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: $spacer * .25 !default;\n$tooltip-padding-x: $spacer * .5 !default;\n$tooltip-margin: null !default; // TODO: remove this in v6\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n// fusv-disable\n$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables\n// fusv-enable\n// scss-docs-end tooltip-variables\n\n// Form tooltips must come after regular tooltips\n// scss-docs-start tooltip-feedback-variables\n$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;\n$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;\n$form-feedback-tooltip-font-size: $tooltip-font-size !default;\n$form-feedback-tooltip-line-height: null !default;\n$form-feedback-tooltip-opacity: $tooltip-opacity !default;\n$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;\n// scss-docs-end tooltip-feedback-variables\n\n\n// Popovers\n\n// scss-docs-start popover-variables\n$popover-font-size: $font-size-sm !default;\n$popover-bg: var(--#{$prefix}body-bg) !default;\n$popover-max-width: 276px !default;\n$popover-border-width: var(--#{$prefix}border-width) !default;\n$popover-border-color: var(--#{$prefix}border-color-translucent) !default;\n$popover-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width}) !default; // stylelint-disable-line function-disallowed-list\n$popover-box-shadow: var(--#{$prefix}box-shadow) !default;\n\n$popover-header-font-size: $font-size-base !default;\n$popover-header-bg: var(--#{$prefix}secondary-bg) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: $spacer !default;\n\n$popover-body-color: var(--#{$prefix}body-color) !default;\n$popover-body-padding-y: $spacer !default;\n$popover-body-padding-x: $spacer !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n// scss-docs-end popover-variables\n\n// fusv-disable\n// Deprecated in Bootstrap 5.2.0 for CSS variables\n$popover-arrow-color: $popover-bg !default;\n$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;\n// fusv-enable\n\n\n// Toasts\n\n// scss-docs-start toast-variables\n$toast-max-width: 350px !default;\n$toast-padding-x: .75rem !default;\n$toast-padding-y: .5rem !default;\n$toast-font-size: .875rem !default;\n$toast-color: null !default;\n$toast-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-border-width: var(--#{$prefix}border-width) !default;\n$toast-border-color: var(--#{$prefix}border-color-translucent) !default;\n$toast-border-radius: var(--#{$prefix}border-radius) !default;\n$toast-box-shadow: var(--#{$prefix}box-shadow) !default;\n$toast-spacing: $container-padding-x !default;\n\n$toast-header-color: var(--#{$prefix}secondary-color) !default;\n$toast-header-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;\n$toast-header-border-color: $toast-border-color !default;\n// scss-docs-end toast-variables\n\n\n// Badges\n\n// scss-docs-start badge-variables\n$badge-font-size: .75em !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-color: $white !default;\n$badge-padding-y: .35em !default;\n$badge-padding-x: .65em !default;\n$badge-border-radius: var(--#{$prefix}border-radius) !default;\n// scss-docs-end badge-variables\n\n\n// Modals\n\n// scss-docs-start modal-variables\n$modal-inner-padding: $spacer !default;\n\n$modal-footer-margin-between: .5rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-color: null !default;\n$modal-content-bg: var(--#{$prefix}body-bg) !default;\n$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;\n$modal-content-border-width: var(--#{$prefix}border-width) !default;\n$modal-content-border-radius: var(--#{$prefix}border-radius-lg) !default;\n$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;\n$modal-content-box-shadow-xs: var(--#{$prefix}box-shadow-sm) !default;\n$modal-content-box-shadow-sm-up: var(--#{$prefix}box-shadow) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n\n$modal-header-border-color: var(--#{$prefix}border-color) !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-header-padding-y: $modal-inner-padding !default;\n$modal-header-padding-x: $modal-inner-padding !default;\n$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility\n\n$modal-footer-bg: null !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n\n$modal-sm: 300px !default;\n$modal-md: 500px !default;\n$modal-lg: 800px !default;\n$modal-xl: 1140px !default;\n\n$modal-fade-transform: translate(0, -50px) !default;\n$modal-show-transform: none !default;\n$modal-transition: transform .3s ease-out !default;\n$modal-scale-transform: scale(1.02) !default;\n// scss-docs-end modal-variables\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n// scss-docs-start alert-variables\n$alert-padding-y: $spacer !default;\n$alert-padding-x: $spacer !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: var(--#{$prefix}border-radius) !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: var(--#{$prefix}border-width) !default;\n$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side\n// scss-docs-end alert-variables\n\n// fusv-disable\n$alert-bg-scale: -80% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-border-scale: -70% !default; // Deprecated in v5.2.0, to be removed in v6\n$alert-color-scale: 40% !default; // Deprecated in v5.2.0, to be removed in v6\n// fusv-enable\n\n// Progress bars\n\n// scss-docs-start progress-variables\n$progress-height: 1rem !default;\n$progress-font-size: $font-size-base * .75 !default;\n$progress-bg: var(--#{$prefix}secondary-bg) !default;\n$progress-border-radius: var(--#{$prefix}border-radius) !default;\n$progress-box-shadow: var(--#{$prefix}box-shadow-inset) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: $primary !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n// scss-docs-end progress-variables\n\n\n// List group\n\n// scss-docs-start list-group-variables\n$list-group-color: var(--#{$prefix}body-color) !default;\n$list-group-bg: var(--#{$prefix}body-bg) !default;\n$list-group-border-color: var(--#{$prefix}border-color) !default;\n$list-group-border-width: var(--#{$prefix}border-width) !default;\n$list-group-border-radius: var(--#{$prefix}border-radius) !default;\n\n$list-group-item-padding-y: $spacer * .5 !default;\n$list-group-item-padding-x: $spacer !default;\n// fusv-disable\n$list-group-item-bg-scale: -80% !default; // Deprecated in v5.3.0\n$list-group-item-color-scale: 40% !default; // Deprecated in v5.3.0\n// fusv-enable\n\n$list-group-hover-bg: var(--#{$prefix}tertiary-bg) !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: var(--#{$prefix}secondary-color) !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: var(--#{$prefix}secondary-color) !default;\n$list-group-action-hover-color: var(--#{$prefix}emphasis-color) !default;\n\n$list-group-action-active-color: var(--#{$prefix}body-color) !default;\n$list-group-action-active-bg: var(--#{$prefix}secondary-bg) !default;\n// scss-docs-end list-group-variables\n\n\n// Image thumbnails\n\n// scss-docs-start thumbnail-variables\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: var(--#{$prefix}body-bg) !default;\n$thumbnail-border-width: var(--#{$prefix}border-width) !default;\n$thumbnail-border-color: var(--#{$prefix}border-color) !default;\n$thumbnail-border-radius: var(--#{$prefix}border-radius) !default;\n$thumbnail-box-shadow: var(--#{$prefix}box-shadow-sm) !default;\n// scss-docs-end thumbnail-variables\n\n\n// Figures\n\n// scss-docs-start figure-variables\n$figure-caption-font-size: $small-font-size !default;\n$figure-caption-color: var(--#{$prefix}secondary-color) !default;\n// scss-docs-end figure-variables\n\n\n// Breadcrumbs\n\n// scss-docs-start breadcrumb-variables\n$breadcrumb-font-size: null !default;\n$breadcrumb-padding-y: 0 !default;\n$breadcrumb-padding-x: 0 !default;\n$breadcrumb-item-padding-x: .5rem !default;\n$breadcrumb-margin-bottom: 1rem !default;\n$breadcrumb-bg: null !default;\n$breadcrumb-divider-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-active-color: var(--#{$prefix}secondary-color) !default;\n$breadcrumb-divider: quote(\"/\") !default;\n$breadcrumb-divider-flipped: $breadcrumb-divider !default;\n$breadcrumb-border-radius: null !default;\n// scss-docs-end breadcrumb-variables\n\n// Carousel\n\n// scss-docs-start carousel-variables\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n$carousel-control-hover-opacity: .9 !default;\n$carousel-control-transition: opacity .15s ease !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-hit-area-height: 10px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-opacity: .5 !default;\n$carousel-indicator-active-bg: $white !default;\n$carousel-indicator-active-opacity: 1 !default;\n$carousel-indicator-transition: opacity .6s ease !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n$carousel-caption-padding-y: 1.25rem !default;\n$carousel-caption-spacer: 1.25rem !default;\n\n$carousel-control-icon-width: 2rem !default;\n\n$carousel-control-prev-icon-bg: url(\"data:image/svg+xml,\") !default;\n$carousel-control-next-icon-bg: url(\"data:image/svg+xml,\") !default;\n\n$carousel-transition-duration: .6s !default;\n$carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n// scss-docs-end carousel-variables\n\n// scss-docs-start carousel-dark-variables\n$carousel-dark-indicator-active-bg: $black !default;\n$carousel-dark-caption-color: $black !default;\n$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;\n// scss-docs-end carousel-dark-variables\n\n\n// Spinners\n\n// scss-docs-start spinner-variables\n$spinner-width: 2rem !default;\n$spinner-height: $spinner-width !default;\n$spinner-vertical-align: -.125em !default;\n$spinner-border-width: .25em !default;\n$spinner-animation-speed: .75s !default;\n\n$spinner-width-sm: 1rem !default;\n$spinner-height-sm: $spinner-width-sm !default;\n$spinner-border-width-sm: .2em !default;\n// scss-docs-end spinner-variables\n\n\n// Close\n\n// scss-docs-start close-variables\n$btn-close-width: 1em !default;\n$btn-close-height: $btn-close-width !default;\n$btn-close-padding-x: .25em !default;\n$btn-close-padding-y: $btn-close-padding-x !default;\n$btn-close-color: $black !default;\n$btn-close-bg: url(\"data:image/svg+xml,\") !default;\n$btn-close-focus-shadow: $focus-ring-box-shadow !default;\n$btn-close-opacity: .5 !default;\n$btn-close-hover-opacity: .75 !default;\n$btn-close-focus-opacity: 1 !default;\n$btn-close-disabled-opacity: .25 !default;\n$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;\n// scss-docs-end close-variables\n\n\n// Offcanvas\n\n// scss-docs-start offcanvas-variables\n$offcanvas-padding-y: $modal-inner-padding !default;\n$offcanvas-padding-x: $modal-inner-padding !default;\n$offcanvas-horizontal-width: 400px !default;\n$offcanvas-vertical-height: 30vh !default;\n$offcanvas-transition-duration: .3s !default;\n$offcanvas-border-color: $modal-content-border-color !default;\n$offcanvas-border-width: $modal-content-border-width !default;\n$offcanvas-title-line-height: $modal-title-line-height !default;\n$offcanvas-bg-color: var(--#{$prefix}body-bg) !default;\n$offcanvas-color: var(--#{$prefix}body-color) !default;\n$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;\n$offcanvas-backdrop-bg: $modal-backdrop-bg !default;\n$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;\n// scss-docs-end offcanvas-variables\n\n// Code\n\n$code-font-size: $small-font-size !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .1875rem !default;\n$kbd-padding-x: .375rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: var(--#{$prefix}body-bg) !default;\n$kbd-bg: var(--#{$prefix}body-color) !default;\n$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6\n\n$pre-color: null !default;\n\n@import \"variables-dark\"; // TODO: can be removed safely in v6, only here to avoid breaking changes in v5.3\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br new file mode 100644 index 0000000..bbbf2eb Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz new file mode 100644 index 0000000..1c9c87f Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css new file mode 100644 index 0000000..672cbc2 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap Grid v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-left:auto;margin-right:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-left:calc(-.5 * var(--bs-gutter-x));margin-right:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-left:calc(var(--bs-gutter-x) * .5);padding-right:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-right:8.33333333%}.offset-2{margin-right:16.66666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.33333333%}.offset-5{margin-right:41.66666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.33333333%}.offset-8{margin-right:66.66666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.33333333%}.offset-11{margin-right:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.33333333%}.offset-sm-2{margin-right:16.66666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.33333333%}.offset-sm-5{margin-right:41.66666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.33333333%}.offset-sm-8{margin-right:66.66666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.33333333%}.offset-sm-11{margin-right:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.33333333%}.offset-md-2{margin-right:16.66666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.33333333%}.offset-md-5{margin-right:41.66666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.33333333%}.offset-md-8{margin-right:66.66666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.33333333%}.offset-md-11{margin-right:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.33333333%}.offset-lg-2{margin-right:16.66666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.33333333%}.offset-lg-5{margin-right:41.66666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.33333333%}.offset-lg-8{margin-right:66.66666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.33333333%}.offset-lg-11{margin-right:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.33333333%}.offset-xl-2{margin-right:16.66666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.33333333%}.offset-xl-5{margin-right:41.66666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.33333333%}.offset-xl-8{margin-right:66.66666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.33333333%}.offset-xl-11{margin-right:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-right:0}.offset-xxl-1{margin-right:8.33333333%}.offset-xxl-2{margin-right:16.66666667%}.offset-xxl-3{margin-right:25%}.offset-xxl-4{margin-right:33.33333333%}.offset-xxl-5{margin-right:41.66666667%}.offset-xxl-6{margin-right:50%}.offset-xxl-7{margin-right:58.33333333%}.offset-xxl-8{margin-right:66.66666667%}.offset-xxl-9{margin-right:75%}.offset-xxl-10{margin-right:83.33333333%}.offset-xxl-11{margin-right:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-left:0!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-5{margin-left:3rem!important}.me-auto{margin-left:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-right:0!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-left:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-5{padding-left:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-right:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-5{padding-right:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-left:0!important;margin-right:0!important}.mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-sm-3{margin-left:1rem!important;margin-right:1rem!important}.mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-sm-5{margin-left:3rem!important;margin-right:3rem!important}.mx-sm-auto{margin-left:auto!important;margin-right:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-left:0!important}.me-sm-1{margin-left:.25rem!important}.me-sm-2{margin-left:.5rem!important}.me-sm-3{margin-left:1rem!important}.me-sm-4{margin-left:1.5rem!important}.me-sm-5{margin-left:3rem!important}.me-sm-auto{margin-left:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-right:0!important}.ms-sm-1{margin-right:.25rem!important}.ms-sm-2{margin-right:.5rem!important}.ms-sm-3{margin-right:1rem!important}.ms-sm-4{margin-right:1.5rem!important}.ms-sm-5{margin-right:3rem!important}.ms-sm-auto{margin-right:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-left:0!important;padding-right:0!important}.px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-sm-3{padding-left:1rem!important;padding-right:1rem!important}.px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-sm-5{padding-left:3rem!important;padding-right:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-left:0!important}.pe-sm-1{padding-left:.25rem!important}.pe-sm-2{padding-left:.5rem!important}.pe-sm-3{padding-left:1rem!important}.pe-sm-4{padding-left:1.5rem!important}.pe-sm-5{padding-left:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-right:0!important}.ps-sm-1{padding-right:.25rem!important}.ps-sm-2{padding-right:.5rem!important}.ps-sm-3{padding-right:1rem!important}.ps-sm-4{padding-right:1.5rem!important}.ps-sm-5{padding-right:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-left:0!important;margin-right:0!important}.mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-md-3{margin-left:1rem!important;margin-right:1rem!important}.mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-md-5{margin-left:3rem!important;margin-right:3rem!important}.mx-md-auto{margin-left:auto!important;margin-right:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-left:0!important}.me-md-1{margin-left:.25rem!important}.me-md-2{margin-left:.5rem!important}.me-md-3{margin-left:1rem!important}.me-md-4{margin-left:1.5rem!important}.me-md-5{margin-left:3rem!important}.me-md-auto{margin-left:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-right:0!important}.ms-md-1{margin-right:.25rem!important}.ms-md-2{margin-right:.5rem!important}.ms-md-3{margin-right:1rem!important}.ms-md-4{margin-right:1.5rem!important}.ms-md-5{margin-right:3rem!important}.ms-md-auto{margin-right:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-left:0!important;padding-right:0!important}.px-md-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-md-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-md-3{padding-left:1rem!important;padding-right:1rem!important}.px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-md-5{padding-left:3rem!important;padding-right:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-left:0!important}.pe-md-1{padding-left:.25rem!important}.pe-md-2{padding-left:.5rem!important}.pe-md-3{padding-left:1rem!important}.pe-md-4{padding-left:1.5rem!important}.pe-md-5{padding-left:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-right:0!important}.ps-md-1{padding-right:.25rem!important}.ps-md-2{padding-right:.5rem!important}.ps-md-3{padding-right:1rem!important}.ps-md-4{padding-right:1.5rem!important}.ps-md-5{padding-right:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-left:0!important;margin-right:0!important}.mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-lg-3{margin-left:1rem!important;margin-right:1rem!important}.mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-lg-5{margin-left:3rem!important;margin-right:3rem!important}.mx-lg-auto{margin-left:auto!important;margin-right:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-left:0!important}.me-lg-1{margin-left:.25rem!important}.me-lg-2{margin-left:.5rem!important}.me-lg-3{margin-left:1rem!important}.me-lg-4{margin-left:1.5rem!important}.me-lg-5{margin-left:3rem!important}.me-lg-auto{margin-left:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-right:0!important}.ms-lg-1{margin-right:.25rem!important}.ms-lg-2{margin-right:.5rem!important}.ms-lg-3{margin-right:1rem!important}.ms-lg-4{margin-right:1.5rem!important}.ms-lg-5{margin-right:3rem!important}.ms-lg-auto{margin-right:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-left:0!important;padding-right:0!important}.px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-lg-3{padding-left:1rem!important;padding-right:1rem!important}.px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-lg-5{padding-left:3rem!important;padding-right:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-left:0!important}.pe-lg-1{padding-left:.25rem!important}.pe-lg-2{padding-left:.5rem!important}.pe-lg-3{padding-left:1rem!important}.pe-lg-4{padding-left:1.5rem!important}.pe-lg-5{padding-left:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-right:0!important}.ps-lg-1{padding-right:.25rem!important}.ps-lg-2{padding-right:.5rem!important}.ps-lg-3{padding-right:1rem!important}.ps-lg-4{padding-right:1.5rem!important}.ps-lg-5{padding-right:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-left:0!important;margin-right:0!important}.mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xl-auto{margin-left:auto!important;margin-right:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-left:0!important}.me-xl-1{margin-left:.25rem!important}.me-xl-2{margin-left:.5rem!important}.me-xl-3{margin-left:1rem!important}.me-xl-4{margin-left:1.5rem!important}.me-xl-5{margin-left:3rem!important}.me-xl-auto{margin-left:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-right:0!important}.ms-xl-1{margin-right:.25rem!important}.ms-xl-2{margin-right:.5rem!important}.ms-xl-3{margin-right:1rem!important}.ms-xl-4{margin-right:1.5rem!important}.ms-xl-5{margin-right:3rem!important}.ms-xl-auto{margin-right:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-left:0!important;padding-right:0!important}.px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-left:0!important}.pe-xl-1{padding-left:.25rem!important}.pe-xl-2{padding-left:.5rem!important}.pe-xl-3{padding-left:1rem!important}.pe-xl-4{padding-left:1.5rem!important}.pe-xl-5{padding-left:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-right:0!important}.ps-xl-1{padding-right:.25rem!important}.ps-xl-2{padding-right:.5rem!important}.ps-xl-3{padding-right:1rem!important}.ps-xl-4{padding-right:1.5rem!important}.ps-xl-5{padding-right:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-left:0!important;margin-right:0!important}.mx-xxl-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-xxl-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-xxl-3{margin-left:1rem!important;margin-right:1rem!important}.mx-xxl-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-xxl-5{margin-left:3rem!important;margin-right:3rem!important}.mx-xxl-auto{margin-left:auto!important;margin-right:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-left:0!important}.me-xxl-1{margin-left:.25rem!important}.me-xxl-2{margin-left:.5rem!important}.me-xxl-3{margin-left:1rem!important}.me-xxl-4{margin-left:1.5rem!important}.me-xxl-5{margin-left:3rem!important}.me-xxl-auto{margin-left:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-right:0!important}.ms-xxl-1{margin-right:.25rem!important}.ms-xxl-2{margin-right:.5rem!important}.ms-xxl-3{margin-right:1rem!important}.ms-xxl-4{margin-right:1.5rem!important}.ms-xxl-5{margin-right:3rem!important}.ms-xxl-auto{margin-right:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-left:0!important;padding-right:0!important}.px-xxl-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-xxl-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-xxl-3{padding-left:1rem!important;padding-right:1rem!important}.px-xxl-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-xxl-5{padding-left:3rem!important;padding-right:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-left:0!important}.pe-xxl-1{padding-left:.25rem!important}.pe-xxl-2{padding-left:.5rem!important}.pe-xxl-3{padding-left:1rem!important}.pe-xxl-4{padding-left:1.5rem!important}.pe-xxl-5{padding-left:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-right:0!important}.ps-xxl-1{padding-right:.25rem!important}.ps-xxl-2{padding-right:.5rem!important}.ps-xxl-3{padding-right:1rem!important}.ps-xxl-4{padding-right:1.5rem!important}.ps-xxl-5{padding-right:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap-grid.rtl.min.css.map */ \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br new file mode 100644 index 0000000..d77e702 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz new file mode 100644 index 0000000..f9e03b8 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map new file mode 100644 index 0000000..1c926af --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_containers.scss","dist/css/bootstrap-grid.rtl.css","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"AACE;;;;ACKA,WCAF,iBAGA,cACA,cACA,cAHA,cADA,eCJE,cAAA,OACA,cAAA,EACA,MAAA,KACA,aAAA,8BACA,cAAA,8BACA,YAAA,KACA,aAAA,KCsDE,yBH5CE,WAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cACE,UAAA,OG2CJ,yBH5CE,WAAA,cAAA,cAAA,cACE,UAAA,OG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QG2CJ,0BH5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QIhBR,MAEI,mBAAA,EAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,MAAA,mBAAA,OAAA,oBAAA,OAKF,KCNA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KAEA,WAAA,8BACA,YAAA,+BACA,aAAA,+BDEE,OCGF,WAAA,WAIA,YAAA,EACA,MAAA,KACA,UAAA,KACA,aAAA,8BACA,cAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,aAAA,YAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,aAwDU,UAxDV,aAAA,IAwDU,WAxDV,aAAA,aAwDU,WAxDV,aAAA,aAmEM,KJ6GR,MI3GU,cAAA,EAGF,KJ6GR,MI3GU,cAAA,EAPF,KJuHR,MIrHU,cAAA,QAGF,KJuHR,MIrHU,cAAA,QAPF,KJiIR,MI/HU,cAAA,OAGF,KJiIR,MI/HU,cAAA,OAPF,KJ2IR,MIzIU,cAAA,KAGF,KJ2IR,MIzIU,cAAA,KAPF,KJqJR,MInJU,cAAA,OAGF,KJqJR,MInJU,cAAA,OAPF,KJ+JR,MI7JU,cAAA,KAGF,KJ+JR,MI7JU,cAAA,KF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJiSN,SI/RQ,cAAA,EAGF,QJgSN,SI9RQ,cAAA,EAPF,QJySN,SIvSQ,cAAA,QAGF,QJwSN,SItSQ,cAAA,QAPF,QJiTN,SI/SQ,cAAA,OAGF,QJgTN,SI9SQ,cAAA,OAPF,QJyTN,SIvTQ,cAAA,KAGF,QJwTN,SItTQ,cAAA,KAPF,QJiUN,SI/TQ,cAAA,OAGF,QJgUN,SI9TQ,cAAA,OAPF,QJyUN,SIvUQ,cAAA,KAGF,QJwUN,SItUQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJ0cN,SIxcQ,cAAA,EAGF,QJycN,SIvcQ,cAAA,EAPF,QJkdN,SIhdQ,cAAA,QAGF,QJidN,SI/cQ,cAAA,QAPF,QJ0dN,SIxdQ,cAAA,OAGF,QJydN,SIvdQ,cAAA,OAPF,QJkeN,SIheQ,cAAA,KAGF,QJieN,SI/dQ,cAAA,KAPF,QJ0eN,SIxeQ,cAAA,OAGF,QJyeN,SIveQ,cAAA,OAPF,QJkfN,SIhfQ,cAAA,KAGF,QJifN,SI/eQ,cAAA,MF1DN,yBEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJmnBN,SIjnBQ,cAAA,EAGF,QJknBN,SIhnBQ,cAAA,EAPF,QJ2nBN,SIznBQ,cAAA,QAGF,QJ0nBN,SIxnBQ,cAAA,QAPF,QJmoBN,SIjoBQ,cAAA,OAGF,QJkoBN,SIhoBQ,cAAA,OAPF,QJ2oBN,SIzoBQ,cAAA,KAGF,QJ0oBN,SIxoBQ,cAAA,KAPF,QJmpBN,SIjpBQ,cAAA,OAGF,QJkpBN,SIhpBQ,cAAA,OAPF,QJ2pBN,SIzpBQ,cAAA,KAGF,QJ0pBN,SIxpBQ,cAAA,MF1DN,0BEUE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,aAAA,EAwDU,aAxDV,aAAA,YAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,aAwDU,aAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAmEM,QJ4xBN,SI1xBQ,cAAA,EAGF,QJ2xBN,SIzxBQ,cAAA,EAPF,QJoyBN,SIlyBQ,cAAA,QAGF,QJmyBN,SIjyBQ,cAAA,QAPF,QJ4yBN,SI1yBQ,cAAA,OAGF,QJ2yBN,SIzyBQ,cAAA,OAPF,QJozBN,SIlzBQ,cAAA,KAGF,QJmzBN,SIjzBQ,cAAA,KAPF,QJ4zBN,SI1zBQ,cAAA,OAGF,QJ2zBN,SIzzBQ,cAAA,OAPF,QJo0BN,SIl0BQ,cAAA,KAGF,QJm0BN,SIj0BQ,cAAA,MF1DN,0BEUE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,aA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,aAAA,EAwDU,cAxDV,aAAA,YAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,aAwDU,cAxDV,aAAA,IAwDU,eAxDV,aAAA,aAwDU,eAxDV,aAAA,aAmEM,SJq8BN,UIn8BQ,cAAA,EAGF,SJo8BN,UIl8BQ,cAAA,EAPF,SJ68BN,UI38BQ,cAAA,QAGF,SJ48BN,UI18BQ,cAAA,QAPF,SJq9BN,UIn9BQ,cAAA,OAGF,SJo9BN,UIl9BQ,cAAA,OAPF,SJ69BN,UI39BQ,cAAA,KAGF,SJ49BN,UI19BQ,cAAA,KAPF,SJq+BN,UIn+BQ,cAAA,OAGF,SJo+BN,UIl+BQ,cAAA,OAPF,SJ6+BN,UI3+BQ,cAAA,KAGF,SJ4+BN,UI1+BQ,cAAA,MCvDF,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,YAAA,YAAA,aAAA,YAPJ,MAOI,YAAA,iBAAA,aAAA,iBAPJ,MAOI,YAAA,gBAAA,aAAA,gBAPJ,MAOI,YAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,iBAAA,aAAA,iBAPJ,MAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,aAAA,YAAA,cAAA,YAPJ,MAOI,aAAA,iBAAA,cAAA,iBAPJ,MAOI,aAAA,gBAAA,cAAA,gBAPJ,MAOI,aAAA,eAAA,cAAA,eAPJ,MAOI,aAAA,iBAAA,cAAA,iBAPJ,MAOI,aAAA,eAAA,cAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,yBGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,0BGGI,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,YAAA,YAAA,aAAA,YAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,gBAAA,aAAA,gBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,iBAAA,aAAA,iBAPJ,SAOI,YAAA,eAAA,aAAA,eAPJ,YAOI,YAAA,eAAA,aAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,aAAA,YAAA,cAAA,YAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,gBAAA,cAAA,gBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,aAAA,iBAAA,cAAA,iBAPJ,SAOI,aAAA,eAAA,cAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBHVR,0BGGI,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,YAAA,YAAA,aAAA,YAPJ,UAOI,YAAA,iBAAA,aAAA,iBAPJ,UAOI,YAAA,gBAAA,aAAA,gBAPJ,UAOI,YAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,iBAAA,aAAA,iBAPJ,UAOI,YAAA,eAAA,aAAA,eAPJ,aAOI,YAAA,eAAA,aAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,aAAA,YAAA,cAAA,YAPJ,UAOI,aAAA,iBAAA,cAAA,iBAPJ,UAOI,aAAA,gBAAA,cAAA,gBAPJ,UAOI,aAAA,eAAA,cAAA,eAPJ,UAOI,aAAA,iBAAA,cAAA,iBAPJ,UAOI,aAAA,eAAA,cAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBCnCZ,aD4BQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-container-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","/*!\n * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-left: auto;\n margin-right: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n:root {\n --bs-breakpoint-xs: 0;\n --bs-breakpoint-sm: 576px;\n --bs-breakpoint-md: 768px;\n --bs-breakpoint-lg: 992px;\n --bs-breakpoint-xl: 1200px;\n --bs-breakpoint-xxl: 1400px;\n}\n\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(-1 * var(--bs-gutter-y));\n margin-left: calc(-0.5 * var(--bs-gutter-x));\n margin-right: calc(-0.5 * var(--bs-gutter-x));\n}\n.row > * {\n box-sizing: border-box;\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-left: calc(var(--bs-gutter-x) * 0.5);\n padding-right: calc(var(--bs-gutter-x) * 0.5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-right: 8.33333333%;\n}\n\n.offset-2 {\n margin-right: 16.66666667%;\n}\n\n.offset-3 {\n margin-right: 25%;\n}\n\n.offset-4 {\n margin-right: 33.33333333%;\n}\n\n.offset-5 {\n margin-right: 41.66666667%;\n}\n\n.offset-6 {\n margin-right: 50%;\n}\n\n.offset-7 {\n margin-right: 58.33333333%;\n}\n\n.offset-8 {\n margin-right: 66.66666667%;\n}\n\n.offset-9 {\n margin-right: 75%;\n}\n\n.offset-10 {\n margin-right: 83.33333333%;\n}\n\n.offset-11 {\n margin-right: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-sm-0 {\n margin-right: 0;\n }\n .offset-sm-1 {\n margin-right: 8.33333333%;\n }\n .offset-sm-2 {\n margin-right: 16.66666667%;\n }\n .offset-sm-3 {\n margin-right: 25%;\n }\n .offset-sm-4 {\n margin-right: 33.33333333%;\n }\n .offset-sm-5 {\n margin-right: 41.66666667%;\n }\n .offset-sm-6 {\n margin-right: 50%;\n }\n .offset-sm-7 {\n margin-right: 58.33333333%;\n }\n .offset-sm-8 {\n margin-right: 66.66666667%;\n }\n .offset-sm-9 {\n margin-right: 75%;\n }\n .offset-sm-10 {\n margin-right: 83.33333333%;\n }\n .offset-sm-11 {\n margin-right: 91.66666667%;\n }\n .g-sm-0,\n .gx-sm-0 {\n --bs-gutter-x: 0;\n }\n .g-sm-0,\n .gy-sm-0 {\n --bs-gutter-y: 0;\n }\n .g-sm-1,\n .gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-sm-1,\n .gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-sm-2,\n .gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-sm-2,\n .gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-sm-3,\n .gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n .g-sm-3,\n .gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n .g-sm-4,\n .gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-sm-4,\n .gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-sm-5,\n .gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n .g-sm-5,\n .gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-md-0 {\n margin-right: 0;\n }\n .offset-md-1 {\n margin-right: 8.33333333%;\n }\n .offset-md-2 {\n margin-right: 16.66666667%;\n }\n .offset-md-3 {\n margin-right: 25%;\n }\n .offset-md-4 {\n margin-right: 33.33333333%;\n }\n .offset-md-5 {\n margin-right: 41.66666667%;\n }\n .offset-md-6 {\n margin-right: 50%;\n }\n .offset-md-7 {\n margin-right: 58.33333333%;\n }\n .offset-md-8 {\n margin-right: 66.66666667%;\n }\n .offset-md-9 {\n margin-right: 75%;\n }\n .offset-md-10 {\n margin-right: 83.33333333%;\n }\n .offset-md-11 {\n margin-right: 91.66666667%;\n }\n .g-md-0,\n .gx-md-0 {\n --bs-gutter-x: 0;\n }\n .g-md-0,\n .gy-md-0 {\n --bs-gutter-y: 0;\n }\n .g-md-1,\n .gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-md-1,\n .gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-md-2,\n .gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-md-2,\n .gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-md-3,\n .gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n .g-md-3,\n .gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n .g-md-4,\n .gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-md-4,\n .gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-md-5,\n .gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n .g-md-5,\n .gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-lg-0 {\n margin-right: 0;\n }\n .offset-lg-1 {\n margin-right: 8.33333333%;\n }\n .offset-lg-2 {\n margin-right: 16.66666667%;\n }\n .offset-lg-3 {\n margin-right: 25%;\n }\n .offset-lg-4 {\n margin-right: 33.33333333%;\n }\n .offset-lg-5 {\n margin-right: 41.66666667%;\n }\n .offset-lg-6 {\n margin-right: 50%;\n }\n .offset-lg-7 {\n margin-right: 58.33333333%;\n }\n .offset-lg-8 {\n margin-right: 66.66666667%;\n }\n .offset-lg-9 {\n margin-right: 75%;\n }\n .offset-lg-10 {\n margin-right: 83.33333333%;\n }\n .offset-lg-11 {\n margin-right: 91.66666667%;\n }\n .g-lg-0,\n .gx-lg-0 {\n --bs-gutter-x: 0;\n }\n .g-lg-0,\n .gy-lg-0 {\n --bs-gutter-y: 0;\n }\n .g-lg-1,\n .gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-lg-1,\n .gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-lg-2,\n .gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-lg-2,\n .gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-lg-3,\n .gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n .g-lg-3,\n .gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n .g-lg-4,\n .gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-lg-4,\n .gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-lg-5,\n .gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n .g-lg-5,\n .gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xl-0 {\n margin-right: 0;\n }\n .offset-xl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xl-3 {\n margin-right: 25%;\n }\n .offset-xl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xl-6 {\n margin-right: 50%;\n }\n .offset-xl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xl-9 {\n margin-right: 75%;\n }\n .offset-xl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xl-11 {\n margin-right: 91.66666667%;\n }\n .g-xl-0,\n .gx-xl-0 {\n --bs-gutter-x: 0;\n }\n .g-xl-0,\n .gy-xl-0 {\n --bs-gutter-y: 0;\n }\n .g-xl-1,\n .gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xl-1,\n .gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xl-2,\n .gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xl-2,\n .gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xl-3,\n .gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xl-3,\n .gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xl-4,\n .gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xl-4,\n .gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xl-5,\n .gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xl-5,\n .gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n .offset-xxl-0 {\n margin-right: 0;\n }\n .offset-xxl-1 {\n margin-right: 8.33333333%;\n }\n .offset-xxl-2 {\n margin-right: 16.66666667%;\n }\n .offset-xxl-3 {\n margin-right: 25%;\n }\n .offset-xxl-4 {\n margin-right: 33.33333333%;\n }\n .offset-xxl-5 {\n margin-right: 41.66666667%;\n }\n .offset-xxl-6 {\n margin-right: 50%;\n }\n .offset-xxl-7 {\n margin-right: 58.33333333%;\n }\n .offset-xxl-8 {\n margin-right: 66.66666667%;\n }\n .offset-xxl-9 {\n margin-right: 75%;\n }\n .offset-xxl-10 {\n margin-right: 83.33333333%;\n }\n .offset-xxl-11 {\n margin-right: 91.66666667%;\n }\n .g-xxl-0,\n .gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n .g-xxl-0,\n .gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n .g-xxl-1,\n .gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n .g-xxl-1,\n .gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n .g-xxl-2,\n .gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n .g-xxl-2,\n .gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n .g-xxl-3,\n .gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n .g-xxl-3,\n .gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n .g-xxl-4,\n .gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n .g-xxl-4,\n .gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n .g-xxl-5,\n .gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n .g-xxl-5,\n .gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-inline-grid {\n display: inline-grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n}\n\n.mx-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n}\n\n.mx-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n}\n\n.mx-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n}\n\n.mx-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n}\n\n.mx-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n}\n\n.mx-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-left: 0 !important;\n}\n\n.me-1 {\n margin-left: 0.25rem !important;\n}\n\n.me-2 {\n margin-left: 0.5rem !important;\n}\n\n.me-3 {\n margin-left: 1rem !important;\n}\n\n.me-4 {\n margin-left: 1.5rem !important;\n}\n\n.me-5 {\n margin-left: 3rem !important;\n}\n\n.me-auto {\n margin-left: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-right: 0 !important;\n}\n\n.ms-1 {\n margin-right: 0.25rem !important;\n}\n\n.ms-2 {\n margin-right: 0.5rem !important;\n}\n\n.ms-3 {\n margin-right: 1rem !important;\n}\n\n.ms-4 {\n margin-right: 1.5rem !important;\n}\n\n.ms-5 {\n margin-right: 3rem !important;\n}\n\n.ms-auto {\n margin-right: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n}\n\n.px-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n}\n\n.px-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n}\n\n.px-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n}\n\n.px-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n}\n\n.px-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-left: 0 !important;\n}\n\n.pe-1 {\n padding-left: 0.25rem !important;\n}\n\n.pe-2 {\n padding-left: 0.5rem !important;\n}\n\n.pe-3 {\n padding-left: 1rem !important;\n}\n\n.pe-4 {\n padding-left: 1.5rem !important;\n}\n\n.pe-5 {\n padding-left: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-right: 0 !important;\n}\n\n.ps-1 {\n padding-right: 0.25rem !important;\n}\n\n.ps-2 {\n padding-right: 0.5rem !important;\n}\n\n.ps-3 {\n padding-right: 1rem !important;\n}\n\n.ps-4 {\n padding-right: 1.5rem !important;\n}\n\n.ps-5 {\n padding-right: 3rem !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-grid {\n display: grid !important;\n }\n .d-sm-inline-grid {\n display: inline-grid !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n .d-sm-none {\n display: none !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n .order-sm-first {\n order: -1 !important;\n }\n .order-sm-0 {\n order: 0 !important;\n }\n .order-sm-1 {\n order: 1 !important;\n }\n .order-sm-2 {\n order: 2 !important;\n }\n .order-sm-3 {\n order: 3 !important;\n }\n .order-sm-4 {\n order: 4 !important;\n }\n .order-sm-5 {\n order: 5 !important;\n }\n .order-sm-last {\n order: 6 !important;\n }\n .m-sm-0 {\n margin: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mx-sm-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-sm-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-sm-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-sm-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n .mt-sm-auto {\n margin-top: auto !important;\n }\n .me-sm-0 {\n margin-left: 0 !important;\n }\n .me-sm-1 {\n margin-left: 0.25rem !important;\n }\n .me-sm-2 {\n margin-left: 0.5rem !important;\n }\n .me-sm-3 {\n margin-left: 1rem !important;\n }\n .me-sm-4 {\n margin-left: 1.5rem !important;\n }\n .me-sm-5 {\n margin-left: 3rem !important;\n }\n .me-sm-auto {\n margin-left: auto !important;\n }\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n .ms-sm-0 {\n margin-right: 0 !important;\n }\n .ms-sm-1 {\n margin-right: 0.25rem !important;\n }\n .ms-sm-2 {\n margin-right: 0.5rem !important;\n }\n .ms-sm-3 {\n margin-right: 1rem !important;\n }\n .ms-sm-4 {\n margin-right: 1.5rem !important;\n }\n .ms-sm-5 {\n margin-right: 3rem !important;\n }\n .ms-sm-auto {\n margin-right: auto !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .px-sm-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-sm-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-sm-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-sm-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-sm-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-sm-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n .pe-sm-0 {\n padding-left: 0 !important;\n }\n .pe-sm-1 {\n padding-left: 0.25rem !important;\n }\n .pe-sm-2 {\n padding-left: 0.5rem !important;\n }\n .pe-sm-3 {\n padding-left: 1rem !important;\n }\n .pe-sm-4 {\n padding-left: 1.5rem !important;\n }\n .pe-sm-5 {\n padding-left: 3rem !important;\n }\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n .ps-sm-0 {\n padding-right: 0 !important;\n }\n .ps-sm-1 {\n padding-right: 0.25rem !important;\n }\n .ps-sm-2 {\n padding-right: 0.5rem !important;\n }\n .ps-sm-3 {\n padding-right: 1rem !important;\n }\n .ps-sm-4 {\n padding-right: 1.5rem !important;\n }\n .ps-sm-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 768px) {\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-grid {\n display: grid !important;\n }\n .d-md-inline-grid {\n display: inline-grid !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n .d-md-none {\n display: none !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n .order-md-first {\n order: -1 !important;\n }\n .order-md-0 {\n order: 0 !important;\n }\n .order-md-1 {\n order: 1 !important;\n }\n .order-md-2 {\n order: 2 !important;\n }\n .order-md-3 {\n order: 3 !important;\n }\n .order-md-4 {\n order: 4 !important;\n }\n .order-md-5 {\n order: 5 !important;\n }\n .order-md-last {\n order: 6 !important;\n }\n .m-md-0 {\n margin: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mx-md-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-md-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-md-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-md-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-md-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-md-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-md-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-md-0 {\n margin-top: 0 !important;\n }\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n .mt-md-auto {\n margin-top: auto !important;\n }\n .me-md-0 {\n margin-left: 0 !important;\n }\n .me-md-1 {\n margin-left: 0.25rem !important;\n }\n .me-md-2 {\n margin-left: 0.5rem !important;\n }\n .me-md-3 {\n margin-left: 1rem !important;\n }\n .me-md-4 {\n margin-left: 1.5rem !important;\n }\n .me-md-5 {\n margin-left: 3rem !important;\n }\n .me-md-auto {\n margin-left: auto !important;\n }\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n .ms-md-0 {\n margin-right: 0 !important;\n }\n .ms-md-1 {\n margin-right: 0.25rem !important;\n }\n .ms-md-2 {\n margin-right: 0.5rem !important;\n }\n .ms-md-3 {\n margin-right: 1rem !important;\n }\n .ms-md-4 {\n margin-right: 1.5rem !important;\n }\n .ms-md-5 {\n margin-right: 3rem !important;\n }\n .ms-md-auto {\n margin-right: auto !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .px-md-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-md-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-md-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-md-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-md-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-md-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-md-0 {\n padding-top: 0 !important;\n }\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n .pe-md-0 {\n padding-left: 0 !important;\n }\n .pe-md-1 {\n padding-left: 0.25rem !important;\n }\n .pe-md-2 {\n padding-left: 0.5rem !important;\n }\n .pe-md-3 {\n padding-left: 1rem !important;\n }\n .pe-md-4 {\n padding-left: 1.5rem !important;\n }\n .pe-md-5 {\n padding-left: 3rem !important;\n }\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n .ps-md-0 {\n padding-right: 0 !important;\n }\n .ps-md-1 {\n padding-right: 0.25rem !important;\n }\n .ps-md-2 {\n padding-right: 0.5rem !important;\n }\n .ps-md-3 {\n padding-right: 1rem !important;\n }\n .ps-md-4 {\n padding-right: 1.5rem !important;\n }\n .ps-md-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 992px) {\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-grid {\n display: grid !important;\n }\n .d-lg-inline-grid {\n display: inline-grid !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n .d-lg-none {\n display: none !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n .order-lg-first {\n order: -1 !important;\n }\n .order-lg-0 {\n order: 0 !important;\n }\n .order-lg-1 {\n order: 1 !important;\n }\n .order-lg-2 {\n order: 2 !important;\n }\n .order-lg-3 {\n order: 3 !important;\n }\n .order-lg-4 {\n order: 4 !important;\n }\n .order-lg-5 {\n order: 5 !important;\n }\n .order-lg-last {\n order: 6 !important;\n }\n .m-lg-0 {\n margin: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mx-lg-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-lg-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-lg-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-lg-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n .mt-lg-auto {\n margin-top: auto !important;\n }\n .me-lg-0 {\n margin-left: 0 !important;\n }\n .me-lg-1 {\n margin-left: 0.25rem !important;\n }\n .me-lg-2 {\n margin-left: 0.5rem !important;\n }\n .me-lg-3 {\n margin-left: 1rem !important;\n }\n .me-lg-4 {\n margin-left: 1.5rem !important;\n }\n .me-lg-5 {\n margin-left: 3rem !important;\n }\n .me-lg-auto {\n margin-left: auto !important;\n }\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n .ms-lg-0 {\n margin-right: 0 !important;\n }\n .ms-lg-1 {\n margin-right: 0.25rem !important;\n }\n .ms-lg-2 {\n margin-right: 0.5rem !important;\n }\n .ms-lg-3 {\n margin-right: 1rem !important;\n }\n .ms-lg-4 {\n margin-right: 1.5rem !important;\n }\n .ms-lg-5 {\n margin-right: 3rem !important;\n }\n .ms-lg-auto {\n margin-right: auto !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .px-lg-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-lg-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-lg-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-lg-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-lg-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-lg-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n .pe-lg-0 {\n padding-left: 0 !important;\n }\n .pe-lg-1 {\n padding-left: 0.25rem !important;\n }\n .pe-lg-2 {\n padding-left: 0.5rem !important;\n }\n .pe-lg-3 {\n padding-left: 1rem !important;\n }\n .pe-lg-4 {\n padding-left: 1.5rem !important;\n }\n .pe-lg-5 {\n padding-left: 3rem !important;\n }\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n .ps-lg-0 {\n padding-right: 0 !important;\n }\n .ps-lg-1 {\n padding-right: 0.25rem !important;\n }\n .ps-lg-2 {\n padding-right: 0.5rem !important;\n }\n .ps-lg-3 {\n padding-right: 1rem !important;\n }\n .ps-lg-4 {\n padding-right: 1.5rem !important;\n }\n .ps-lg-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1200px) {\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-grid {\n display: grid !important;\n }\n .d-xl-inline-grid {\n display: inline-grid !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n .d-xl-none {\n display: none !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n .order-xl-first {\n order: -1 !important;\n }\n .order-xl-0 {\n order: 0 !important;\n }\n .order-xl-1 {\n order: 1 !important;\n }\n .order-xl-2 {\n order: 2 !important;\n }\n .order-xl-3 {\n order: 3 !important;\n }\n .order-xl-4 {\n order: 4 !important;\n }\n .order-xl-5 {\n order: 5 !important;\n }\n .order-xl-last {\n order: 6 !important;\n }\n .m-xl-0 {\n margin: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mx-xl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-xl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-xl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-xl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n .mt-xl-auto {\n margin-top: auto !important;\n }\n .me-xl-0 {\n margin-left: 0 !important;\n }\n .me-xl-1 {\n margin-left: 0.25rem !important;\n }\n .me-xl-2 {\n margin-left: 0.5rem !important;\n }\n .me-xl-3 {\n margin-left: 1rem !important;\n }\n .me-xl-4 {\n margin-left: 1.5rem !important;\n }\n .me-xl-5 {\n margin-left: 3rem !important;\n }\n .me-xl-auto {\n margin-left: auto !important;\n }\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n .ms-xl-0 {\n margin-right: 0 !important;\n }\n .ms-xl-1 {\n margin-right: 0.25rem !important;\n }\n .ms-xl-2 {\n margin-right: 0.5rem !important;\n }\n .ms-xl-3 {\n margin-right: 1rem !important;\n }\n .ms-xl-4 {\n margin-right: 1.5rem !important;\n }\n .ms-xl-5 {\n margin-right: 3rem !important;\n }\n .ms-xl-auto {\n margin-right: auto !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .px-xl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-xl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-xl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-xl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-xl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-xl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n .pe-xl-0 {\n padding-left: 0 !important;\n }\n .pe-xl-1 {\n padding-left: 0.25rem !important;\n }\n .pe-xl-2 {\n padding-left: 0.5rem !important;\n }\n .pe-xl-3 {\n padding-left: 1rem !important;\n }\n .pe-xl-4 {\n padding-left: 1.5rem !important;\n }\n .pe-xl-5 {\n padding-left: 3rem !important;\n }\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xl-0 {\n padding-right: 0 !important;\n }\n .ps-xl-1 {\n padding-right: 0.25rem !important;\n }\n .ps-xl-2 {\n padding-right: 0.5rem !important;\n }\n .ps-xl-3 {\n padding-right: 1rem !important;\n }\n .ps-xl-4 {\n padding-right: 1.5rem !important;\n }\n .ps-xl-5 {\n padding-right: 3rem !important;\n }\n}\n@media (min-width: 1400px) {\n .d-xxl-inline {\n display: inline !important;\n }\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n .d-xxl-block {\n display: block !important;\n }\n .d-xxl-grid {\n display: grid !important;\n }\n .d-xxl-inline-grid {\n display: inline-grid !important;\n }\n .d-xxl-table {\n display: table !important;\n }\n .d-xxl-table-row {\n display: table-row !important;\n }\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n .d-xxl-flex {\n display: flex !important;\n }\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n .d-xxl-none {\n display: none !important;\n }\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xxl-row {\n flex-direction: row !important;\n }\n .flex-xxl-column {\n flex-direction: column !important;\n }\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n .align-items-xxl-center {\n align-items: center !important;\n }\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n .align-content-xxl-center {\n align-content: center !important;\n }\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n .align-self-xxl-center {\n align-self: center !important;\n }\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n .order-xxl-first {\n order: -1 !important;\n }\n .order-xxl-0 {\n order: 0 !important;\n }\n .order-xxl-1 {\n order: 1 !important;\n }\n .order-xxl-2 {\n order: 2 !important;\n }\n .order-xxl-3 {\n order: 3 !important;\n }\n .order-xxl-4 {\n order: 4 !important;\n }\n .order-xxl-5 {\n order: 5 !important;\n }\n .order-xxl-last {\n order: 6 !important;\n }\n .m-xxl-0 {\n margin: 0 !important;\n }\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n .m-xxl-3 {\n margin: 1rem !important;\n }\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n .m-xxl-5 {\n margin: 3rem !important;\n }\n .m-xxl-auto {\n margin: auto !important;\n }\n .mx-xxl-0 {\n margin-left: 0 !important;\n margin-right: 0 !important;\n }\n .mx-xxl-1 {\n margin-left: 0.25rem !important;\n margin-right: 0.25rem !important;\n }\n .mx-xxl-2 {\n margin-left: 0.5rem !important;\n margin-right: 0.5rem !important;\n }\n .mx-xxl-3 {\n margin-left: 1rem !important;\n margin-right: 1rem !important;\n }\n .mx-xxl-4 {\n margin-left: 1.5rem !important;\n margin-right: 1.5rem !important;\n }\n .mx-xxl-5 {\n margin-left: 3rem !important;\n margin-right: 3rem !important;\n }\n .mx-xxl-auto {\n margin-left: auto !important;\n margin-right: auto !important;\n }\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n .me-xxl-0 {\n margin-left: 0 !important;\n }\n .me-xxl-1 {\n margin-left: 0.25rem !important;\n }\n .me-xxl-2 {\n margin-left: 0.5rem !important;\n }\n .me-xxl-3 {\n margin-left: 1rem !important;\n }\n .me-xxl-4 {\n margin-left: 1.5rem !important;\n }\n .me-xxl-5 {\n margin-left: 3rem !important;\n }\n .me-xxl-auto {\n margin-left: auto !important;\n }\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n .ms-xxl-0 {\n margin-right: 0 !important;\n }\n .ms-xxl-1 {\n margin-right: 0.25rem !important;\n }\n .ms-xxl-2 {\n margin-right: 0.5rem !important;\n }\n .ms-xxl-3 {\n margin-right: 1rem !important;\n }\n .ms-xxl-4 {\n margin-right: 1.5rem !important;\n }\n .ms-xxl-5 {\n margin-right: 3rem !important;\n }\n .ms-xxl-auto {\n margin-right: auto !important;\n }\n .p-xxl-0 {\n padding: 0 !important;\n }\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n .p-xxl-3 {\n padding: 1rem !important;\n }\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n .p-xxl-5 {\n padding: 3rem !important;\n }\n .px-xxl-0 {\n padding-left: 0 !important;\n padding-right: 0 !important;\n }\n .px-xxl-1 {\n padding-left: 0.25rem !important;\n padding-right: 0.25rem !important;\n }\n .px-xxl-2 {\n padding-left: 0.5rem !important;\n padding-right: 0.5rem !important;\n }\n .px-xxl-3 {\n padding-left: 1rem !important;\n padding-right: 1rem !important;\n }\n .px-xxl-4 {\n padding-left: 1.5rem !important;\n padding-right: 1.5rem !important;\n }\n .px-xxl-5 {\n padding-left: 3rem !important;\n padding-right: 3rem !important;\n }\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n .pe-xxl-0 {\n padding-left: 0 !important;\n }\n .pe-xxl-1 {\n padding-left: 0.25rem !important;\n }\n .pe-xxl-2 {\n padding-left: 0.5rem !important;\n }\n .pe-xxl-3 {\n padding-left: 1rem !important;\n }\n .pe-xxl-4 {\n padding-left: 1.5rem !important;\n }\n .pe-xxl-5 {\n padding-left: 3rem !important;\n }\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n .ps-xxl-0 {\n padding-right: 0 !important;\n }\n .ps-xxl-1 {\n padding-right: 0.25rem !important;\n }\n .ps-xxl-2 {\n padding-right: 0.5rem !important;\n }\n .ps-xxl-3 {\n padding-right: 1rem !important;\n }\n .ps-xxl-4 {\n padding-right: 1.5rem !important;\n }\n .ps-xxl-5 {\n padding-right: 3rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-grid {\n display: grid !important;\n }\n .d-print-inline-grid {\n display: inline-grid !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n .d-print-none {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap-grid.rtl.css.map */","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n width: 100%;\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n:root {\n @each $name, $value in $grid-breakpoints {\n --#{$prefix}breakpoint-#{$name}: #{$value};\n }\n}\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$prefix}gutter-x: #{$gutter};\n --#{$prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed\n margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list\n margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready() {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// number of columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: percentage(divide(1, $count));\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is an invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix: \"\", $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // Use custom CSS variable name if present, otherwise default to `class`\n $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (e.g. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$prefix}#{$css-variable-name}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $variable in $is-local-vars {\n --#{$prefix}#{$local-var}: #{$variable};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br new file mode 100644 index 0000000..6d2a889 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz new file mode 100644 index 0000000..d21cc35 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css new file mode 100644 index 0000000..6305410 --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css @@ -0,0 +1,597 @@ +/*! + * Bootstrap Reboot v5.3.3 (https://getbootstrap.com/) + * Copyright 2011-2024 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root, +[data-bs-theme=light] { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-black: #000; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-primary-text-emphasis: #052c65; + --bs-secondary-text-emphasis: #2b2f32; + --bs-success-text-emphasis: #0a3622; + --bs-info-text-emphasis: #055160; + --bs-warning-text-emphasis: #664d03; + --bs-danger-text-emphasis: #58151c; + --bs-light-text-emphasis: #495057; + --bs-dark-text-emphasis: #495057; + --bs-primary-bg-subtle: #cfe2ff; + --bs-secondary-bg-subtle: #e2e3e5; + --bs-success-bg-subtle: #d1e7dd; + --bs-info-bg-subtle: #cff4fc; + --bs-warning-bg-subtle: #fff3cd; + --bs-danger-bg-subtle: #f8d7da; + --bs-light-bg-subtle: #fcfcfd; + --bs-dark-bg-subtle: #ced4da; + --bs-primary-border-subtle: #9ec5fe; + --bs-secondary-border-subtle: #c4c8cb; + --bs-success-border-subtle: #a3cfbb; + --bs-info-border-subtle: #9eeaf9; + --bs-warning-border-subtle: #ffe69c; + --bs-danger-border-subtle: #f1aeb5; + --bs-light-border-subtle: #e9ecef; + --bs-dark-border-subtle: #adb5bd; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-color-rgb: 33, 37, 41; + --bs-body-bg: #fff; + --bs-body-bg-rgb: 255, 255, 255; + --bs-emphasis-color: #000; + --bs-emphasis-color-rgb: 0, 0, 0; + --bs-secondary-color: rgba(33, 37, 41, 0.75); + --bs-secondary-color-rgb: 33, 37, 41; + --bs-secondary-bg: #e9ecef; + --bs-secondary-bg-rgb: 233, 236, 239; + --bs-tertiary-color: rgba(33, 37, 41, 0.5); + --bs-tertiary-color-rgb: 33, 37, 41; + --bs-tertiary-bg: #f8f9fa; + --bs-tertiary-bg-rgb: 248, 249, 250; + --bs-heading-color: inherit; + --bs-link-color: #0d6efd; + --bs-link-color-rgb: 13, 110, 253; + --bs-link-decoration: underline; + --bs-link-hover-color: #0a58ca; + --bs-link-hover-color-rgb: 10, 88, 202; + --bs-code-color: #d63384; + --bs-highlight-color: #212529; + --bs-highlight-bg: #fff3cd; + --bs-border-width: 1px; + --bs-border-style: solid; + --bs-border-color: #dee2e6; + --bs-border-color-translucent: rgba(0, 0, 0, 0.175); + --bs-border-radius: 0.375rem; + --bs-border-radius-sm: 0.25rem; + --bs-border-radius-lg: 0.5rem; + --bs-border-radius-xl: 1rem; + --bs-border-radius-xxl: 2rem; + --bs-border-radius-2xl: var(--bs-border-radius-xxl); + --bs-border-radius-pill: 50rem; + --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); + --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175); + --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075); + --bs-focus-ring-width: 0.25rem; + --bs-focus-ring-opacity: 0.25; + --bs-focus-ring-color: rgba(13, 110, 253, 0.25); + --bs-form-valid-color: #198754; + --bs-form-valid-border-color: #198754; + --bs-form-invalid-color: #dc3545; + --bs-form-invalid-border-color: #dc3545; +} + +[data-bs-theme=dark] { + color-scheme: dark; + --bs-body-color: #dee2e6; + --bs-body-color-rgb: 222, 226, 230; + --bs-body-bg: #212529; + --bs-body-bg-rgb: 33, 37, 41; + --bs-emphasis-color: #fff; + --bs-emphasis-color-rgb: 255, 255, 255; + --bs-secondary-color: rgba(222, 226, 230, 0.75); + --bs-secondary-color-rgb: 222, 226, 230; + --bs-secondary-bg: #343a40; + --bs-secondary-bg-rgb: 52, 58, 64; + --bs-tertiary-color: rgba(222, 226, 230, 0.5); + --bs-tertiary-color-rgb: 222, 226, 230; + --bs-tertiary-bg: #2b3035; + --bs-tertiary-bg-rgb: 43, 48, 53; + --bs-primary-text-emphasis: #6ea8fe; + --bs-secondary-text-emphasis: #a7acb1; + --bs-success-text-emphasis: #75b798; + --bs-info-text-emphasis: #6edff6; + --bs-warning-text-emphasis: #ffda6a; + --bs-danger-text-emphasis: #ea868f; + --bs-light-text-emphasis: #f8f9fa; + --bs-dark-text-emphasis: #dee2e6; + --bs-primary-bg-subtle: #031633; + --bs-secondary-bg-subtle: #161719; + --bs-success-bg-subtle: #051b11; + --bs-info-bg-subtle: #032830; + --bs-warning-bg-subtle: #332701; + --bs-danger-bg-subtle: #2c0b0e; + --bs-light-bg-subtle: #343a40; + --bs-dark-bg-subtle: #1a1d20; + --bs-primary-border-subtle: #084298; + --bs-secondary-border-subtle: #41464b; + --bs-success-border-subtle: #0f5132; + --bs-info-border-subtle: #087990; + --bs-warning-border-subtle: #997404; + --bs-danger-border-subtle: #842029; + --bs-light-border-subtle: #495057; + --bs-dark-border-subtle: #343a40; + --bs-heading-color: inherit; + --bs-link-color: #6ea8fe; + --bs-link-hover-color: #8bb9fe; + --bs-link-color-rgb: 110, 168, 254; + --bs-link-hover-color-rgb: 139, 185, 254; + --bs-code-color: #e685b5; + --bs-highlight-color: #dee2e6; + --bs-highlight-bg: #664d03; + --bs-border-color: #495057; + --bs-border-color-translucent: rgba(255, 255, 255, 0.15); + --bs-form-valid-color: #75b798; + --bs-form-valid-border-color: #75b798; + --bs-form-invalid-color: #ea868f; + --bs-form-invalid-border-color: #ea868f; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} + +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +hr { + margin: 1rem 0; + color: inherit; + border: 0; + border-top: var(--bs-border-width) solid; + opacity: 0.25; +} + +h6, h5, h4, h3, h2, h1 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; + color: var(--bs-heading-color); +} + +h1 { + font-size: calc(1.375rem + 1.5vw); +} +@media (min-width: 1200px) { + h1 { + font-size: 2.5rem; + } +} + +h2 { + font-size: calc(1.325rem + 0.9vw); +} +@media (min-width: 1200px) { + h2 { + font-size: 2rem; + } +} + +h3 { + font-size: calc(1.3rem + 0.6vw); +} +@media (min-width: 1200px) { + h3 { + font-size: 1.75rem; + } +} + +h4 { + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + h4 { + font-size: 1.5rem; + } +} + +h5 { + font-size: 1.25rem; +} + +h6 { + font-size: 1rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} + +ol, +ul { + padding-left: 2rem; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small { + font-size: 0.875em; +} + +mark { + padding: 0.1875em; + color: var(--bs-highlight-color); + background-color: var(--bs-highlight-bg); +} + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +a { + color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); + text-decoration: underline; +} +a:hover { + --bs-link-color-rgb: var(--bs-link-hover-color-rgb); +} + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; +} + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +code { + font-size: 0.875em; + color: var(--bs-code-color); + word-wrap: break-word; +} +a > code { + color: inherit; +} + +kbd { + padding: 0.1875rem 0.375rem; + font-size: 0.875em; + color: var(--bs-body-bg); + background-color: var(--bs-body-color); + border-radius: 0.25rem; +} +kbd kbd { + padding: 0; + font-size: 1em; +} + +figure { + margin: 0 0 1rem; +} + +img, +svg { + vertical-align: middle; +} + +table { + caption-side: bottom; + border-collapse: collapse; +} + +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: var(--bs-secondary-color); + text-align: left; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; +} + +label { + display: inline-block; +} + +button { + border-radius: 0; +} + +button:focus:not(:focus-visible) { + outline: 0; +} + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +button, +select { + text-transform: none; +} + +[role=button] { + cursor: pointer; +} + +select { + word-wrap: normal; +} +select:disabled { + opacity: 1; +} + +[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { + display: none !important; +} + +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} +button:not(:disabled), +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]:not(:disabled) { + cursor: pointer; +} + +::-moz-focus-inner { + padding: 0; + border-style: none; +} + +textarea { + resize: vertical; +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} + +legend { + float: left; + width: 100%; + padding: 0; + margin-bottom: 0.5rem; + font-size: calc(1.275rem + 0.3vw); + line-height: inherit; +} +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} +legend + * { + clear: left; +} + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; +} + +::-webkit-inner-spin-button { + height: auto; +} + +[type=search] { + -webkit-appearance: textfield; + outline-offset: -2px; +} + +/* rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/ +::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-color-swatch-wrapper { + padding: 0; +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} + +::file-selector-button { + font: inherit; + -webkit-appearance: button; +} + +output { + display: inline-block; +} + +iframe { + border: 0; +} + +summary { + display: list-item; + cursor: pointer; +} + +progress { + vertical-align: baseline; +} + +[hidden] { + display: none !important; +} + +/*# sourceMappingURL=bootstrap-reboot.css.map */ \ No newline at end of file diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.br b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.br new file mode 100644 index 0000000..edb6929 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.br differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.gz b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.gz new file mode 100644 index 0000000..b78e9a6 Binary files /dev/null and b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.gz differ diff --git a/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map new file mode 100644 index 0000000..5fe522b --- /dev/null +++ b/BlazorApp/obj/Release/net10.0/PubTmp/Out/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/mixins/_banner.scss","../../scss/_root.scss","../../scss/vendor/_rfs.scss","bootstrap-reboot.css","../../scss/mixins/_color-mode.scss","../../scss/_reboot.scss","../../scss/_variables.scss","../../scss/mixins/_border-radius.scss"],"names":[],"mappings":"AACE;;;;EAAA;ACDF;;EASI,kBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,kBAAA;EAAA,iBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,mBAAA;EAAA,kBAAA;EAAA,kBAAA;EAAA,gBAAA;EAAA,gBAAA;EAAA,kBAAA;EAAA,uBAAA;EAIA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,sBAAA;EAIA,qBAAA;EAAA,uBAAA;EAAA,qBAAA;EAAA,kBAAA;EAAA,qBAAA;EAAA,oBAAA;EAAA,mBAAA;EAAA,kBAAA;EAIA,8BAAA;EAAA,iCAAA;EAAA,6BAAA;EAAA,2BAAA;EAAA,6BAAA;EAAA,4BAAA;EAAA,6BAAA;EAAA,yBAAA;EAIA,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAIA,+BAAA;EAAA,iCAAA;EAAA,+BAAA;EAAA,4BAAA;EAAA,+BAAA;EAAA,8BAAA;EAAA,6BAAA;EAAA,4BAAA;EAIA,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAGF,6BAAA;EACA,uBAAA;EAMA,qNAAA;EACA,yGAAA;EACA,yFAAA;EAOA,gDAAA;EC2OI,yBALI;EDpOR,0BAAA;EACA,0BAAA;EAKA,wBAAA;EACA,+BAAA;EACA,kBAAA;EACA,+BAAA;EAEA,yBAAA;EACA,gCAAA;EAEA,4CAAA;EACA,oCAAA;EACA,0BAAA;EACA,oCAAA;EAEA,0CAAA;EACA,mCAAA;EACA,yBAAA;EACA,mCAAA;EAGA,2BAAA;EAEA,wBAAA;EACA,iCAAA;EACA,+BAAA;EAEA,8BAAA;EACA,sCAAA;EAMA,wBAAA;EACA,6BAAA;EACA,0BAAA;EAGA,sBAAA;EACA,wBAAA;EACA,0BAAA;EACA,mDAAA;EAEA,4BAAA;EACA,8BAAA;EACA,6BAAA;EACA,2BAAA;EACA,4BAAA;EACA,mDAAA;EACA,8BAAA;EAGA,kDAAA;EACA,2DAAA;EACA,oDAAA;EACA,2DAAA;EAIA,8BAAA;EACA,6BAAA;EACA,+CAAA;EAIA,8BAAA;EACA,qCAAA;EACA,gCAAA;EACA,uCAAA;AEHF;;AC7GI;EHsHA,kBAAA;EAGA,wBAAA;EACA,kCAAA;EACA,qBAAA;EACA,4BAAA;EAEA,yBAAA;EACA,sCAAA;EAEA,+CAAA;EACA,uCAAA;EACA,0BAAA;EACA,iCAAA;EAEA,6CAAA;EACA,sCAAA;EACA,yBAAA;EACA,gCAAA;EAGE,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAIA,+BAAA;EAAA,iCAAA;EAAA,+BAAA;EAAA,4BAAA;EAAA,+BAAA;EAAA,8BAAA;EAAA,6BAAA;EAAA,4BAAA;EAIA,mCAAA;EAAA,qCAAA;EAAA,mCAAA;EAAA,gCAAA;EAAA,mCAAA;EAAA,kCAAA;EAAA,iCAAA;EAAA,gCAAA;EAGF,2BAAA;EAEA,wBAAA;EACA,8BAAA;EACA,kCAAA;EACA,wCAAA;EAEA,wBAAA;EACA,6BAAA;EACA,0BAAA;EAEA,0BAAA;EACA,wDAAA;EAEA,8BAAA;EACA,qCAAA;EACA,gCAAA;EACA,uCAAA;AEHJ;;AErKA;;;EAGE,sBAAA;AFwKF;;AEzJI;EANJ;IAOM,uBAAA;EF6JJ;AACF;;AEhJA;EACE,SAAA;EACA,uCAAA;EH6OI,mCALI;EGtOR,uCAAA;EACA,uCAAA;EACA,2BAAA;EACA,qCAAA;EACA,mCAAA;EACA,8BAAA;EACA,6CAAA;AFmJF;;AE1IA;EACE,cAAA;EACA,cCmnB4B;EDlnB5B,SAAA;EACA,wCAAA;EACA,aCynB4B;AH5e9B;;AEnIA;EACE,aAAA;EACA,qBCwjB4B;EDrjB5B,gBCwjB4B;EDvjB5B,gBCwjB4B;EDvjB5B,8BAAA;AFoIF;;AEjIA;EHuMQ,iCAAA;AClER;AD1FI;EG3CJ;IH8MQ,iBAAA;ECrEN;AACF;;AErIA;EHkMQ,iCAAA;ACzDR;ADnGI;EGtCJ;IHyMQ,eAAA;EC5DN;AACF;;AEzIA;EH6LQ,+BAAA;AChDR;AD5GI;EGjCJ;IHoMQ,kBAAA;ECnDN;AACF;;AE7IA;EHwLQ,iCAAA;ACvCR;ADrHI;EG5BJ;IH+LQ,iBAAA;EC1CN;AACF;;AEjJA;EH+KM,kBALI;ACrBV;;AEhJA;EH0KM,eALI;ACjBV;;AEzIA;EACE,aAAA;EACA,mBCwV0B;AH5M5B;;AElIA;EACE,yCAAA;EAAA,iCAAA;EACA,YAAA;EACA,sCAAA;EAAA,8BAAA;AFqIF;;AE/HA;EACE,mBAAA;EACA,kBAAA;EACA,oBAAA;AFkIF;;AE5HA;;EAEE,kBAAA;AF+HF;;AE5HA;;;EAGE,aAAA;EACA,mBAAA;AF+HF;;AE5HA;;;;EAIE,gBAAA;AF+HF;;AE5HA;EACE,gBC6b4B;AH9T9B;;AE1HA;EACE,qBAAA;EACA,cAAA;AF6HF;;AEvHA;EACE,gBAAA;AF0HF;;AElHA;;EAEE,mBCsa4B;AHjT9B;;AE7GA;EH6EM,kBALI;ACyCV;;AE1GA;EACE,iBCqf4B;EDpf5B,gCAAA;EACA,wCAAA;AF6GF;;AEpGA;;EAEE,kBAAA;EHwDI,iBALI;EGjDR,cAAA;EACA,wBAAA;AFuGF;;AEpGA;EAAM,eAAA;AFwGN;;AEvGA;EAAM,WAAA;AF2GN;;AEtGA;EACE,gEAAA;EACA,0BCgNwC;AHvG1C;AEvGE;EACE,mDAAA;AFyGJ;;AE9FE;EAEE,cAAA;EACA,qBAAA;AFgGJ;;AEzFA;;;;EAIE,qCCgV4B;EJlUxB,cALI;ACoFV;;AErFA;EACE,cAAA;EACA,aAAA;EACA,mBAAA;EACA,cAAA;EHEI,kBALI;AC4FV;AEpFE;EHHI,kBALI;EGUN,cAAA;EACA,kBAAA;AFsFJ;;AElFA;EHVM,kBALI;EGiBR,2BAAA;EACA,qBAAA;AFqFF;AElFE;EACE,cAAA;AFoFJ;;AEhFA;EACE,2BAAA;EHtBI,kBALI;EG6BR,wBCy5CkC;EDx5ClC,sCCy5CkC;EC9rDhC,sBAAA;AJyXJ;AEjFE;EACE,UAAA;EH7BE,cALI;ACsHV;;AEzEA;EACE,gBAAA;AF4EF;;AEtEA;;EAEE,sBAAA;AFyEF;;AEjEA;EACE,oBAAA;EACA,yBAAA;AFoEF;;AEjEA;EACE,mBC4X4B;ED3X5B,sBC2X4B;ED1X5B,gCC4Z4B;ED3Z5B,gBAAA;AFoEF;;AE7DA;EAEE,mBAAA;EACA,gCAAA;AF+DF;;AE5DA;;;;;;EAME,qBAAA;EACA,mBAAA;EACA,eAAA;AF+DF;;AEvDA;EACE,qBAAA;AF0DF;;AEpDA;EAEE,gBAAA;AFsDF;;AE9CA;EACE,UAAA;AFiDF;;AE5CA;;;;;EAKE,SAAA;EACA,oBAAA;EH5HI,kBALI;EGmIR,oBAAA;AF+CF;;AE3CA;;EAEE,oBAAA;AF8CF;;AEzCA;EACE,eAAA;AF4CF;;AEzCA;EAGE,iBAAA;AF0CF;AEvCE;EACE,UAAA;AFyCJ;;AElCA;EACE,wBAAA;AFqCF;;AE7BA;;;;EAIE,0BAAA;AFgCF;AE7BI;;;;EACE,eAAA;AFkCN;;AE3BA;EACE,UAAA;EACA,kBAAA;AF8BF;;AEzBA;EACE,gBAAA;AF4BF;;AElBA;EACE,YAAA;EACA,UAAA;EACA,SAAA;EACA,SAAA;AFqBF;;AEbA;EACE,WAAA;EACA,WAAA;EACA,UAAA;EACA,qBCmN4B;EJpatB,iCAAA;EGoNN,oBAAA;AFeF;AD/XI;EGyWJ;IHtMQ,iBAAA;ECgON;AACF;AElBE;EACE,WAAA;AFoBJ;;AEbA;;;;;;;EAOE,UAAA;AFgBF;;AEbA;EACE,YAAA;AFgBF;;AEPA;EACE,6BAAA;EACA,oBAAA;AFUF;;AEFA;;;;;;;CAAA;AAWA;EACE,wBAAA;AFEF;;AEGA;EACE,UAAA;AFAF;;AEOA;EACE,aAAA;EACA,0BAAA;AFJF;;AEEA;EACE,aAAA;EACA,0BAAA;AFJF;;AESA;EACE,qBAAA;AFNF;;AEWA;EACE,SAAA;AFRF;;AEeA;EACE,kBAAA;EACA,eAAA;AFZF;;AEoBA;EACE,wBAAA;AFjBF;;AEyBA;EACE,wBAAA;AFtBF","file":"bootstrap-reboot.css","sourcesContent":["@mixin bsBanner($file) {\n /*!\n * Bootstrap #{$file} v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n}\n",":root,\n[data-bs-theme=\"light\"] {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$prefix}#{$color}-rgb: #{$value};\n }\n\n @each $color, $value in $theme-colors-text {\n --#{$prefix}#{$color}-text-emphasis: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}white-rgb: #{to-rgb($white)};\n --#{$prefix}black-rgb: #{to-rgb($black)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$prefix}gradient: #{$gradient};\n\n // Root and body\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$prefix}root-font-size: #{$font-size-root};\n }\n --#{$prefix}body-font-family: #{inspect($font-family-base)};\n @include rfs($font-size-base, --#{$prefix}body-font-size);\n --#{$prefix}body-font-weight: #{$font-weight-base};\n --#{$prefix}body-line-height: #{$line-height-base};\n @if $body-text-align != null {\n --#{$prefix}body-text-align: #{$body-text-align};\n }\n\n --#{$prefix}body-color: #{$body-color};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color)};\n --#{$prefix}body-bg: #{$body-bg};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg)};\n // scss-docs-end root-body-variables\n\n --#{$prefix}heading-color: #{$headings-color};\n\n --#{$prefix}link-color: #{$link-color};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color)};\n --#{$prefix}link-decoration: #{$link-decoration};\n\n --#{$prefix}link-hover-color: #{$link-hover-color};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color)};\n\n @if $link-hover-decoration != null {\n --#{$prefix}link-hover-decoration: #{$link-hover-decoration};\n }\n\n --#{$prefix}code-color: #{$code-color};\n --#{$prefix}highlight-color: #{$mark-color};\n --#{$prefix}highlight-bg: #{$mark-bg};\n\n // scss-docs-start root-border-var\n --#{$prefix}border-width: #{$border-width};\n --#{$prefix}border-style: #{$border-style};\n --#{$prefix}border-color: #{$border-color};\n --#{$prefix}border-color-translucent: #{$border-color-translucent};\n\n --#{$prefix}border-radius: #{$border-radius};\n --#{$prefix}border-radius-sm: #{$border-radius-sm};\n --#{$prefix}border-radius-lg: #{$border-radius-lg};\n --#{$prefix}border-radius-xl: #{$border-radius-xl};\n --#{$prefix}border-radius-xxl: #{$border-radius-xxl};\n --#{$prefix}border-radius-2xl: var(--#{$prefix}border-radius-xxl); // Deprecated in v5.3.0 for consistency\n --#{$prefix}border-radius-pill: #{$border-radius-pill};\n // scss-docs-end root-border-var\n\n --#{$prefix}box-shadow: #{$box-shadow};\n --#{$prefix}box-shadow-sm: #{$box-shadow-sm};\n --#{$prefix}box-shadow-lg: #{$box-shadow-lg};\n --#{$prefix}box-shadow-inset: #{$box-shadow-inset};\n\n // Focus styles\n // scss-docs-start root-focus-variables\n --#{$prefix}focus-ring-width: #{$focus-ring-width};\n --#{$prefix}focus-ring-opacity: #{$focus-ring-opacity};\n --#{$prefix}focus-ring-color: #{$focus-ring-color};\n // scss-docs-end root-focus-variables\n\n // scss-docs-start root-form-validation-variables\n --#{$prefix}form-valid-color: #{$form-valid-color};\n --#{$prefix}form-valid-border-color: #{$form-valid-border-color};\n --#{$prefix}form-invalid-color: #{$form-invalid-color};\n --#{$prefix}form-invalid-border-color: #{$form-invalid-border-color};\n // scss-docs-end root-form-validation-variables\n}\n\n@if $enable-dark-mode {\n @include color-mode(dark, true) {\n color-scheme: dark;\n\n // scss-docs-start root-dark-mode-vars\n --#{$prefix}body-color: #{$body-color-dark};\n --#{$prefix}body-color-rgb: #{to-rgb($body-color-dark)};\n --#{$prefix}body-bg: #{$body-bg-dark};\n --#{$prefix}body-bg-rgb: #{to-rgb($body-bg-dark)};\n\n --#{$prefix}emphasis-color: #{$body-emphasis-color-dark};\n --#{$prefix}emphasis-color-rgb: #{to-rgb($body-emphasis-color-dark)};\n\n --#{$prefix}secondary-color: #{$body-secondary-color-dark};\n --#{$prefix}secondary-color-rgb: #{to-rgb($body-secondary-color-dark)};\n --#{$prefix}secondary-bg: #{$body-secondary-bg-dark};\n --#{$prefix}secondary-bg-rgb: #{to-rgb($body-secondary-bg-dark)};\n\n --#{$prefix}tertiary-color: #{$body-tertiary-color-dark};\n --#{$prefix}tertiary-color-rgb: #{to-rgb($body-tertiary-color-dark)};\n --#{$prefix}tertiary-bg: #{$body-tertiary-bg-dark};\n --#{$prefix}tertiary-bg-rgb: #{to-rgb($body-tertiary-bg-dark)};\n\n @each $color, $value in $theme-colors-text-dark {\n --#{$prefix}#{$color}-text-emphasis: #{$value};\n }\n\n @each $color, $value in $theme-colors-bg-subtle-dark {\n --#{$prefix}#{$color}-bg-subtle: #{$value};\n }\n\n @each $color, $value in $theme-colors-border-subtle-dark {\n --#{$prefix}#{$color}-border-subtle: #{$value};\n }\n\n --#{$prefix}heading-color: #{$headings-color-dark};\n\n --#{$prefix}link-color: #{$link-color-dark};\n --#{$prefix}link-hover-color: #{$link-hover-color-dark};\n --#{$prefix}link-color-rgb: #{to-rgb($link-color-dark)};\n --#{$prefix}link-hover-color-rgb: #{to-rgb($link-hover-color-dark)};\n\n --#{$prefix}code-color: #{$code-color-dark};\n --#{$prefix}highlight-color: #{$mark-color-dark};\n --#{$prefix}highlight-bg: #{$mark-bg-dark};\n\n --#{$prefix}border-color: #{$border-color-dark};\n --#{$prefix}border-color-translucent: #{$border-color-translucent-dark};\n\n --#{$prefix}form-valid-color: #{$form-valid-color-dark};\n --#{$prefix}form-valid-border-color: #{$form-valid-border-color-dark};\n --#{$prefix}form-invalid-color: #{$form-invalid-color-dark};\n --#{$prefix}form-invalid-border-color: #{$form-invalid-border-color-dark};\n // scss-docs-end root-dark-mode-vars\n }\n}\n","// stylelint-disable scss/dimension-no-non-numeric-values\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query () {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query () {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: \"\";\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + \" 0\";\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + \" \" + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + \" \" + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n } @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + \" \" + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: \"\";\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + \" 0\";\n } @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + \" \" + $value;\n } @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + \" \" + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + \" calc(\" + $min-width + if($value < 0, \" - \", \" + \") + $variable-width + \")\";\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluid-val: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluid-val {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule () {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluid-val);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule () {\n #{$property}: if($rfs-mode == max-media-query, $fluid-val, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","/*!\n * Bootstrap Reboot v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root,\n[data-bs-theme=light] {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-black: #000;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-primary-text-emphasis: #052c65;\n --bs-secondary-text-emphasis: #2b2f32;\n --bs-success-text-emphasis: #0a3622;\n --bs-info-text-emphasis: #055160;\n --bs-warning-text-emphasis: #664d03;\n --bs-danger-text-emphasis: #58151c;\n --bs-light-text-emphasis: #495057;\n --bs-dark-text-emphasis: #495057;\n --bs-primary-bg-subtle: #cfe2ff;\n --bs-secondary-bg-subtle: #e2e3e5;\n --bs-success-bg-subtle: #d1e7dd;\n --bs-info-bg-subtle: #cff4fc;\n --bs-warning-bg-subtle: #fff3cd;\n --bs-danger-bg-subtle: #f8d7da;\n --bs-light-bg-subtle: #fcfcfd;\n --bs-dark-bg-subtle: #ced4da;\n --bs-primary-border-subtle: #9ec5fe;\n --bs-secondary-border-subtle: #c4c8cb;\n --bs-success-border-subtle: #a3cfbb;\n --bs-info-border-subtle: #9eeaf9;\n --bs-warning-border-subtle: #ffe69c;\n --bs-danger-border-subtle: #f1aeb5;\n --bs-light-border-subtle: #e9ecef;\n --bs-dark-border-subtle: #adb5bd;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-color-rgb: 33, 37, 41;\n --bs-body-bg: #fff;\n --bs-body-bg-rgb: 255, 255, 255;\n --bs-emphasis-color: #000;\n --bs-emphasis-color-rgb: 0, 0, 0;\n --bs-secondary-color: rgba(33, 37, 41, 0.75);\n --bs-secondary-color-rgb: 33, 37, 41;\n --bs-secondary-bg: #e9ecef;\n --bs-secondary-bg-rgb: 233, 236, 239;\n --bs-tertiary-color: rgba(33, 37, 41, 0.5);\n --bs-tertiary-color-rgb: 33, 37, 41;\n --bs-tertiary-bg: #f8f9fa;\n --bs-tertiary-bg-rgb: 248, 249, 250;\n --bs-heading-color: inherit;\n --bs-link-color: #0d6efd;\n --bs-link-color-rgb: 13, 110, 253;\n --bs-link-decoration: underline;\n --bs-link-hover-color: #0a58ca;\n --bs-link-hover-color-rgb: 10, 88, 202;\n --bs-code-color: #d63384;\n --bs-highlight-color: #212529;\n --bs-highlight-bg: #fff3cd;\n --bs-border-width: 1px;\n --bs-border-style: solid;\n --bs-border-color: #dee2e6;\n --bs-border-color-translucent: rgba(0, 0, 0, 0.175);\n --bs-border-radius: 0.375rem;\n --bs-border-radius-sm: 0.25rem;\n --bs-border-radius-lg: 0.5rem;\n --bs-border-radius-xl: 1rem;\n --bs-border-radius-xxl: 2rem;\n --bs-border-radius-2xl: var(--bs-border-radius-xxl);\n --bs-border-radius-pill: 50rem;\n --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);\n --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);\n --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);\n --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);\n --bs-focus-ring-width: 0.25rem;\n --bs-focus-ring-opacity: 0.25;\n --bs-focus-ring-color: rgba(13, 110, 253, 0.25);\n --bs-form-valid-color: #198754;\n --bs-form-valid-border-color: #198754;\n --bs-form-invalid-color: #dc3545;\n --bs-form-invalid-border-color: #dc3545;\n}\n\n[data-bs-theme=dark] {\n color-scheme: dark;\n --bs-body-color: #dee2e6;\n --bs-body-color-rgb: 222, 226, 230;\n --bs-body-bg: #212529;\n --bs-body-bg-rgb: 33, 37, 41;\n --bs-emphasis-color: #fff;\n --bs-emphasis-color-rgb: 255, 255, 255;\n --bs-secondary-color: rgba(222, 226, 230, 0.75);\n --bs-secondary-color-rgb: 222, 226, 230;\n --bs-secondary-bg: #343a40;\n --bs-secondary-bg-rgb: 52, 58, 64;\n --bs-tertiary-color: rgba(222, 226, 230, 0.5);\n --bs-tertiary-color-rgb: 222, 226, 230;\n --bs-tertiary-bg: #2b3035;\n --bs-tertiary-bg-rgb: 43, 48, 53;\n --bs-primary-text-emphasis: #6ea8fe;\n --bs-secondary-text-emphasis: #a7acb1;\n --bs-success-text-emphasis: #75b798;\n --bs-info-text-emphasis: #6edff6;\n --bs-warning-text-emphasis: #ffda6a;\n --bs-danger-text-emphasis: #ea868f;\n --bs-light-text-emphasis: #f8f9fa;\n --bs-dark-text-emphasis: #dee2e6;\n --bs-primary-bg-subtle: #031633;\n --bs-secondary-bg-subtle: #161719;\n --bs-success-bg-subtle: #051b11;\n --bs-info-bg-subtle: #032830;\n --bs-warning-bg-subtle: #332701;\n --bs-danger-bg-subtle: #2c0b0e;\n --bs-light-bg-subtle: #343a40;\n --bs-dark-bg-subtle: #1a1d20;\n --bs-primary-border-subtle: #084298;\n --bs-secondary-border-subtle: #41464b;\n --bs-success-border-subtle: #0f5132;\n --bs-info-border-subtle: #087990;\n --bs-warning-border-subtle: #997404;\n --bs-danger-border-subtle: #842029;\n --bs-light-border-subtle: #495057;\n --bs-dark-border-subtle: #343a40;\n --bs-heading-color: inherit;\n --bs-link-color: #6ea8fe;\n --bs-link-hover-color: #8bb9fe;\n --bs-link-color-rgb: 110, 168, 254;\n --bs-link-hover-color-rgb: 139, 185, 254;\n --bs-code-color: #e685b5;\n --bs-highlight-color: #dee2e6;\n --bs-highlight-bg: #664d03;\n --bs-border-color: #495057;\n --bs-border-color-translucent: rgba(255, 255, 255, 0.15);\n --bs-form-valid-color: #75b798;\n --bs-form-valid-border-color: #75b798;\n --bs-form-invalid-color: #ea868f;\n --bs-form-invalid-border-color: #ea868f;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n border: 0;\n border-top: var(--bs-border-width) solid;\n opacity: 0.25;\n}\n\nh6, h5, h4, h3, h2, h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n color: var(--bs-heading-color);\n}\n\nh1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1 {\n font-size: 2.5rem;\n }\n}\n\nh2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2 {\n font-size: 2rem;\n }\n}\n\nh3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3 {\n font-size: 1.75rem;\n }\n}\n\nh4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4 {\n font-size: 1.5rem;\n }\n}\n\nh5 {\n font-size: 1.25rem;\n}\n\nh6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title] {\n text-decoration: underline dotted;\n cursor: help;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 0.875em;\n}\n\nmark {\n padding: 0.1875em;\n color: var(--bs-highlight-color);\n background-color: var(--bs-highlight-bg);\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));\n text-decoration: underline;\n}\na:hover {\n --bs-link-color-rgb: var(--bs-link-hover-color-rgb);\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: var(--bs-code-color);\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.1875rem 0.375rem;\n font-size: 0.875em;\n color: var(--bs-body-bg);\n background-color: var(--bs-body-color);\n border-radius: 0.25rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: var(--bs-secondary-color);\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {\n display: none !important;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n/*# sourceMappingURL=bootstrap-reboot.css.map */\n","// scss-docs-start color-mode-mixin\n@mixin color-mode($mode: light, $root: false) {\n @if $color-mode-type == \"media-query\" {\n @if $root == true {\n @media (prefers-color-scheme: $mode) {\n :root {\n @content;\n }\n }\n } @else {\n @media (prefers-color-scheme: $mode) {\n @content;\n }\n }\n } @else {\n [data-bs-theme=\"#{$mode}\"] {\n @content;\n }\n }\n}\n// scss-docs-end color-mode-mixin\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n @include font-size(var(--#{$prefix}root-font-size));\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$prefix}body-font-family);\n @include font-size(var(--#{$prefix}body-font-size));\n font-weight: var(--#{$prefix}body-font-weight);\n line-height: var(--#{$prefix}body-line-height);\n color: var(--#{$prefix}body-color);\n text-align: var(--#{$prefix}body-text-align);\n background-color: var(--#{$prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n opacity: $hr-opacity;\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

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

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