commit 689475cde836db1a8ee9d8f7d3dc517ba6fe5641 Author: Said Date: Wed Aug 5 21:15:12 2026 +0300 Initial commit - CDN diff --git a/CDN.Tests/CDN.Tests.csproj b/CDN.Tests/CDN.Tests.csproj new file mode 100644 index 0000000..315b0eb --- /dev/null +++ b/CDN.Tests/CDN.Tests.csproj @@ -0,0 +1,27 @@ + + + + net9.0 + enable + enable + false + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CDN.Tests/FileUploadTests.cs b/CDN.Tests/FileUploadTests.cs new file mode 100644 index 0000000..cd8ee24 --- /dev/null +++ b/CDN.Tests/FileUploadTests.cs @@ -0,0 +1,126 @@ +using System.Net; +using System.Net.Http.Headers; +using System.Text; +using Microsoft.AspNetCore.Mvc.Testing; +using Microsoft.IdentityModel.Tokens; +using System.IdentityModel.Tokens.Jwt; +using System.Security.Claims; +using Xunit; +using System.Net.Http.Json; + +namespace CDN.Tests; + +public class FileUploadTests : IClassFixture> +{ + private readonly WebApplicationFactory _factory; + + public FileUploadTests(WebApplicationFactory factory) + { + _factory = factory; + } + + private string GenerateToken() + { + var key = Encoding.UTF8.GetBytes("this_is_a_very_secret_key_for_development_purposes"); + var securityKey = new SymmetricSecurityKey(key); + var credentials = new SigningCredentials(securityKey, SecurityAlgorithms.HmacSha256); + + var claims = new[] + { + new Claim(JwtRegisteredClaimNames.Sub, "testuser"), + new Claim(JwtRegisteredClaimNames.Jti, Guid.NewGuid().ToString()) + }; + + var token = new JwtSecurityToken( + issuer: "MassTechCDN", + audience: "MassTechClients", + claims: claims, + expires: DateTime.Now.AddMinutes(30), + signingCredentials: credentials); + + return new JwtSecurityTokenHandler().WriteToken(token); + } + + [Fact] + public async Task Upload_Image_ReturnsSuccessAndUrl() + { + // Arrange + var client = _factory.CreateClient(); + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", GenerateToken()); + + var content = new MultipartFormDataContent(); + var fileContent = new ByteArrayContent(new byte[] { + 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, // Magic + 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, // IHDR + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, // Width 1, Height 1 + 0x08, 0x06, 0x00, 0x00, 0x00, 0x1F, 0x15, 0xC4, // Bit depth, Color type + 0x89, 0x00, 0x00, 0x00, 0x0A, 0x49, 0x44, 0x41, // IDAT chunk length + 0x54, 0x78, 0x9C, 0x63, 0x00, 0x01, 0x00, 0x00, // IDAT data + 0x05, 0x00, 0x01, 0x0D, 0x0A, 0x2D, 0xB4, 0x00, + 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE, // IEND + 0x42, 0x60, 0x82 + }); + fileContent.Headers.ContentType = MediaTypeHeaderValue.Parse("image/png"); + content.Add(fileContent, "file", "test.png"); + + // Act + var response = await client.PostAsync("/api/files/upload?w=100&h=100", content); + + // Assert + response.EnsureSuccessStatusCode(); + var responseString = await response.Content.ReadAsStringAsync(); + Assert.Contains("File uploaded successfully", responseString); + } + + [Fact] + public async Task Upload_NoFile_ReturnsBadRequest() + { + // Arrange + var client = _factory.CreateClient(); + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", GenerateToken()); + var content = new MultipartFormDataContent(); // Empty + + // Act + var response = await client.PostAsync("/api/files/upload", content); + + // Assert + Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode); + } + + [Fact] + public async Task Delete_File_ReturnsSuccess() + { + // Arrange + var client = _factory.CreateClient(); + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", GenerateToken()); + + // First upload a file to get a known filename + var content = new MultipartFormDataContent(); + var fileContent = new ByteArrayContent(new byte[] { + 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, // Magic + 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, // IHDR + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, // Width 1, Height 1 + 0x08, 0x06, 0x00, 0x00, 0x00, 0x1F, 0x15, 0xC4, // Bit depth, Color type + 0x89, 0x00, 0x00, 0x00, 0x0A, 0x49, 0x44, 0x41, // IDAT chunk length + 0x54, 0x78, 0x9C, 0x63, 0x00, 0x01, 0x00, 0x00, // IDAT data + 0x05, 0x00, 0x01, 0x0D, 0x0A, 0x2D, 0xB4, 0x00, + 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE, // IEND + 0x42, 0x60, 0x82 + }); + fileContent.Headers.ContentType = MediaTypeHeaderValue.Parse("image/png"); + content.Add(fileContent, "file", "todelete.png"); + + var uploadRes = await client.PostAsync("/api/files/upload", content); + uploadRes.EnsureSuccessStatusCode(); + var json = await uploadRes.Content.ReadFromJsonAsync(); + var fileName = json.FileName; // This will likely be [guid].webp + + // Act + var deleteRes = await client.DeleteAsync($"/api/files/{fileName}"); + + // Assert + deleteRes.EnsureSuccessStatusCode(); + } + + private class UploadResponse { public string FileName { get; set; } } +} diff --git a/CDN.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_CDN.Tests b/CDN.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_CDN.Tests new file mode 100644 index 0000000..b333d64 Binary files /dev/null and b/CDN.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_CDN.Tests differ diff --git a/CDN.Tests/bin/Debug/net10.0/CoverletSourceRootsMapping_CDN.Tests b/CDN.Tests/bin/Debug/net10.0/CoverletSourceRootsMapping_CDN.Tests new file mode 100644 index 0000000..b333d64 Binary files /dev/null and b/CDN.Tests/bin/Debug/net10.0/CoverletSourceRootsMapping_CDN.Tests differ diff --git a/CDN.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CDN.Tests b/CDN.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CDN.Tests new file mode 100644 index 0000000..b333d64 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CDN.Tests differ diff --git a/CDN.Tests/bin/Debug/net9.0/CDN b/CDN.Tests/bin/Debug/net9.0/CDN new file mode 100755 index 0000000..22f62ca Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/CDN differ diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.Tests.deps.json b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.deps.json new file mode 100644 index 0000000..9abf399 --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.deps.json @@ -0,0 +1,4845 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NET", + "NET9_0", + "NETCOREAPP", + "NET5_0_OR_GREATER", + "NET6_0_OR_GREATER", + "NET7_0_OR_GREATER", + "NET8_0_OR_GREATER", + "NET9_0_OR_GREATER", + "NETCOREAPP1_0_OR_GREATER", + "NETCOREAPP1_1_OR_GREATER", + "NETCOREAPP2_0_OR_GREATER", + "NETCOREAPP2_1_OR_GREATER", + "NETCOREAPP2_2_OR_GREATER", + "NETCOREAPP3_0_OR_GREATER", + "NETCOREAPP3_1_OR_GREATER" + ], + "languageVersion": "13.0", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v9.0": { + "CDN.Tests/1.0.0": { + "dependencies": { + "CDN": "1.0.0", + "Microsoft.AspNetCore.Mvc.Testing": "9.0.0", + "Microsoft.NET.Test.Sdk": "17.12.0", + "System.IdentityModel.Tokens.Jwt": "8.15.0", + "coverlet.collector": "6.0.2", + "xunit": "2.9.2", + "xunit.runner.visualstudio": "2.8.2", + "Microsoft.AspNetCore.Antiforgery": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.Core": "9.0.0.0", + "Microsoft.AspNetCore.Authentication": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "9.0.0.0", + "Microsoft.AspNetCore.Authorization": "9.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "9.0.0.0", + "Microsoft.AspNetCore.Components.Authorization": "9.0.0.0", + "Microsoft.AspNetCore.Components": "9.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints": "9.0.0.0", + "Microsoft.AspNetCore.Components.Forms": "9.0.0.0", + "Microsoft.AspNetCore.Components.Server": "9.0.0.0", + "Microsoft.AspNetCore.Components.Web": "9.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.CookiePolicy": "9.0.0.0", + "Microsoft.AspNetCore.Cors": "9.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.DataProtection": "9.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "9.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Diagnostics": "9.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "9.0.0.0", + "Microsoft.AspNetCore": "9.0.0.0", + "Microsoft.AspNetCore.HostFiltering": "9.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Hosting": "9.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "9.0.0.0", + "Microsoft.AspNetCore.Http.Connections": "9.0.0.0", + "Microsoft.AspNetCore.Http": "9.0.0.0", + "Microsoft.AspNetCore.Http.Extensions": "9.0.0.0", + "Microsoft.AspNetCore.Http.Features": "9.0.0.0", + "Microsoft.AspNetCore.Http.Results": "9.0.0.0", + "Microsoft.AspNetCore.HttpLogging": "9.0.0.0", + "Microsoft.AspNetCore.HttpOverrides": "9.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "9.0.0.0", + "Microsoft.AspNetCore.Identity": "9.0.0.0", + "Microsoft.AspNetCore.Localization": "9.0.0.0", + "Microsoft.AspNetCore.Localization.Routing": "9.0.0.0", + "Microsoft.AspNetCore.Metadata": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Core": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "9.0.0.0", + "Microsoft.AspNetCore.Mvc": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "9.0.0.0", + "Microsoft.AspNetCore.OutputCaching": "9.0.0.0", + "Microsoft.AspNetCore.RateLimiting": "9.0.0.0", + "Microsoft.AspNetCore.Razor": "9.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "9.0.0.0", + "Microsoft.AspNetCore.RequestDecompression": "9.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.ResponseCaching": "9.0.0.0", + "Microsoft.AspNetCore.ResponseCompression": "9.0.0.0", + "Microsoft.AspNetCore.Rewrite": "9.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Routing": "9.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "9.0.0.0", + "Microsoft.AspNetCore.Server.IIS": "9.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "9.0.0.0", + "Microsoft.AspNetCore.Session": "9.0.0.0", + "Microsoft.AspNetCore.SignalR.Common": "9.0.0.0", + "Microsoft.AspNetCore.SignalR.Core": "9.0.0.0", + "Microsoft.AspNetCore.SignalR": "9.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "9.0.0.0", + "Microsoft.AspNetCore.StaticAssets": "9.0.0.0", + "Microsoft.AspNetCore.StaticFiles": "9.0.0.0", + "Microsoft.AspNetCore.WebSockets": "9.0.0.0", + "Microsoft.AspNetCore.WebUtilities": "9.0.0.0", + "Microsoft.CSharp": "9.0.0.0", + "Microsoft.Extensions.Caching.Abstractions": "9.0.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.Binder.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "9.0.0.0", + "Microsoft.Extensions.Configuration.Json.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "9.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.Xml": "9.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.DependencyInjection.Reference": "9.0.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.Diagnostics.Reference": "9.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "9.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "9.0.0.0", + "Microsoft.Extensions.Features": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Composite": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Physical.Reference": "9.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing.Reference": "9.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.Hosting.Reference": "9.0.0.0", + "Microsoft.Extensions.Http": "9.0.0.0", + "Microsoft.Extensions.Identity.Core": "9.0.0.0", + "Microsoft.Extensions.Identity.Stores": "9.0.0.0", + "Microsoft.Extensions.Localization.Abstractions": "9.0.0.0", + "Microsoft.Extensions.Localization": "9.0.0.0", + "Microsoft.Extensions.Logging.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.Configuration.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.Console.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.Debug.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.EventLog.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.EventSource.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.TraceSource": "9.0.0.0", + "Microsoft.Extensions.ObjectPool": "9.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions.Reference": "9.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "9.0.0.0", + "Microsoft.Extensions.Options.Reference": "9.0.0.0", + "Microsoft.Extensions.Primitives.Reference": "9.0.0.0", + "Microsoft.Extensions.WebEncoders": "9.0.0.0", + "Microsoft.JSInterop": "9.0.0.0", + "Microsoft.Net.Http.Headers": "9.0.0.0", + "Microsoft.VisualBasic.Core": "14.0.0.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "9.0.0.0", + "Microsoft.Win32.Registry": "9.0.0.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "9.0.0.0", + "System.Buffers": "9.0.0.0", + "System.Collections.Concurrent": "9.0.0.0", + "System.Collections": "9.0.0.0", + "System.Collections.Immutable": "9.0.0.0", + "System.Collections.NonGeneric": "9.0.0.0", + "System.Collections.Specialized": "9.0.0.0", + "System.ComponentModel.Annotations": "9.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "9.0.0.0", + "System.ComponentModel.EventBasedAsync": "9.0.0.0", + "System.ComponentModel.Primitives": "9.0.0.0", + "System.ComponentModel.TypeConverter": "9.0.0.0", + "System.Configuration": "4.0.0.0", + "System.Console": "9.0.0.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "9.0.0.0", + "System.Data.DataSetExtensions": "9.0.0.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "9.0.0.0", + "System.Diagnostics.Debug": "9.0.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0.0", + "System.Diagnostics.EventLog.Reference": "9.0.0.0", + "System.Diagnostics.FileVersionInfo": "9.0.0.0", + "System.Diagnostics.Process": "9.0.0.0", + "System.Diagnostics.StackTrace": "9.0.0.0", + "System.Diagnostics.TextWriterTraceListener": "9.0.0.0", + "System.Diagnostics.Tools": "9.0.0.0", + "System.Diagnostics.TraceSource": "9.0.0.0", + "System.Diagnostics.Tracing": "9.0.0.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "9.0.0.0", + "System.Dynamic.Runtime": "9.0.0.0", + "System.Formats.Asn1": "9.0.0.0", + "System.Formats.Tar": "9.0.0.0", + "System.Globalization.Calendars": "9.0.0.0", + "System.Globalization": "9.0.0.0", + "System.Globalization.Extensions": "9.0.0.0", + "System.IO.Compression.Brotli": "9.0.0.0", + "System.IO.Compression": "9.0.0.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "9.0.0.0", + "System.IO": "9.0.0.0", + "System.IO.FileSystem.AccessControl": "9.0.0.0", + "System.IO.FileSystem": "9.0.0.0", + "System.IO.FileSystem.DriveInfo": "9.0.0.0", + "System.IO.FileSystem.Primitives": "9.0.0.0", + "System.IO.FileSystem.Watcher": "9.0.0.0", + "System.IO.IsolatedStorage": "9.0.0.0", + "System.IO.MemoryMappedFiles": "9.0.0.0", + "System.IO.Pipelines": "9.0.0.0", + "System.IO.Pipes.AccessControl": "9.0.0.0", + "System.IO.Pipes": "9.0.0.0", + "System.IO.UnmanagedMemoryStream": "9.0.0.0", + "System.Linq": "9.0.0.0", + "System.Linq.Expressions": "9.0.0.0", + "System.Linq.Parallel": "9.0.0.0", + "System.Linq.Queryable": "9.0.0.0", + "System.Memory": "9.0.0.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "9.0.0.0", + "System.Net.Http.Json": "9.0.0.0", + "System.Net.HttpListener": "9.0.0.0", + "System.Net.Mail": "9.0.0.0", + "System.Net.NameResolution": "9.0.0.0", + "System.Net.NetworkInformation": "9.0.0.0", + "System.Net.Ping": "9.0.0.0", + "System.Net.Primitives": "9.0.0.0", + "System.Net.Quic": "9.0.0.0", + "System.Net.Requests": "9.0.0.0", + "System.Net.Security": "9.0.0.0", + "System.Net.ServicePoint": "9.0.0.0", + "System.Net.Sockets": "9.0.0.0", + "System.Net.WebClient": "9.0.0.0", + "System.Net.WebHeaderCollection": "9.0.0.0", + "System.Net.WebProxy": "9.0.0.0", + "System.Net.WebSockets.Client": "9.0.0.0", + "System.Net.WebSockets": "9.0.0.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "9.0.0.0", + "System.ObjectModel": "9.0.0.0", + "System.Reflection.DispatchProxy": "9.0.0.0", + "System.Reflection": "9.0.0.0", + "System.Reflection.Emit": "9.0.0.0", + "System.Reflection.Emit.ILGeneration": "9.0.0.0", + "System.Reflection.Emit.Lightweight": "9.0.0.0", + "System.Reflection.Extensions": "9.0.0.0", + "System.Reflection.Metadata.Reference": "9.0.0.0", + "System.Reflection.Primitives": "9.0.0.0", + "System.Reflection.TypeExtensions": "9.0.0.0", + "System.Resources.Reader": "9.0.0.0", + "System.Resources.ResourceManager": "9.0.0.0", + "System.Resources.Writer": "9.0.0.0", + "System.Runtime.CompilerServices.Unsafe": "9.0.0.0", + "System.Runtime.CompilerServices.VisualC": "9.0.0.0", + "System.Runtime": "9.0.0.0", + "System.Runtime.Extensions": "9.0.0.0", + "System.Runtime.Handles": "9.0.0.0", + "System.Runtime.InteropServices": "9.0.0.0", + "System.Runtime.InteropServices.JavaScript": "9.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "9.0.0.0", + "System.Runtime.Intrinsics": "9.0.0.0", + "System.Runtime.Loader": "9.0.0.0", + "System.Runtime.Numerics": "9.0.0.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "8.1.0.0", + "System.Runtime.Serialization.Json": "9.0.0.0", + "System.Runtime.Serialization.Primitives": "9.0.0.0", + "System.Runtime.Serialization.Xml": "9.0.0.0", + "System.Security.AccessControl": "9.0.0.0", + "System.Security.Claims": "9.0.0.0", + "System.Security.Cryptography.Algorithms": "9.0.0.0", + "System.Security.Cryptography.Cng": "9.0.0.0", + "System.Security.Cryptography.Csp": "9.0.0.0", + "System.Security.Cryptography": "9.0.0.0", + "System.Security.Cryptography.Encoding": "9.0.0.0", + "System.Security.Cryptography.OpenSsl": "9.0.0.0", + "System.Security.Cryptography.Primitives": "9.0.0.0", + "System.Security.Cryptography.X509Certificates": "9.0.0.0", + "System.Security.Cryptography.Xml": "9.0.0.0", + "System.Security": "4.0.0.0", + "System.Security.Principal": "9.0.0.0", + "System.Security.Principal.Windows": "9.0.0.0", + "System.Security.SecureString": "9.0.0.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages": "9.0.0.0", + "System.Text.Encoding": "9.0.0.0", + "System.Text.Encoding.Extensions": "9.0.0.0", + "System.Text.Encodings.Web": "9.0.0.0", + "System.Text.Json": "9.0.0.0", + "System.Text.RegularExpressions": "9.0.0.0", + "System.Threading.Channels": "9.0.0.0", + "System.Threading": "9.0.0.0", + "System.Threading.Overlapped": "9.0.0.0", + "System.Threading.RateLimiting": "9.0.0.0", + "System.Threading.Tasks.Dataflow": "9.0.0.0", + "System.Threading.Tasks": "9.0.0.0", + "System.Threading.Tasks.Extensions": "9.0.0.0", + "System.Threading.Tasks.Parallel": "9.0.0.0", + "System.Threading.Thread": "9.0.0.0", + "System.Threading.ThreadPool": "9.0.0.0", + "System.Threading.Timer": "9.0.0.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "9.0.0.0", + "System.ValueTuple": "9.0.0.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "9.0.0.0", + "System.Windows": "4.0.0.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "9.0.0.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "9.0.0.0", + "System.Xml.XmlDocument": "9.0.0.0", + "System.Xml.XmlSerializer": "9.0.0.0", + "System.Xml.XPath": "9.0.0.0", + "System.Xml.XPath.XDocument": "9.0.0.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "CDN.Tests.dll": {} + }, + "compile": { + "CDN.Tests.dll": {} + } + }, + "coverlet.collector/6.0.2": {}, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Testing/9.0.0": { + "dependencies": { + "Microsoft.AspNetCore.TestHost": "9.0.0", + "Microsoft.Extensions.DependencyModel": "9.0.0", + "Microsoft.Extensions.Hosting": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47517" + } + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {} + } + }, + "Microsoft.AspNetCore.TestHost/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.TestHost.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.TestHost.dll": {} + } + }, + "Microsoft.CodeCoverage/17.12.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.524.48002" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + } + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": {}, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": {}, + "Microsoft.Extensions.Hosting/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + } + }, + "Microsoft.Extensions.Primitives/9.0.0": {}, + "Microsoft.IdentityModel.Abstractions/8.15.0": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.15.0.0", + "fileVersion": "8.15.0.61118" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.15.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.15.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.15.0.0", + "fileVersion": "8.15.0.61118" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/8.15.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.15.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.15.0.0", + "fileVersion": "8.15.0.61118" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.15.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.15.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/8.15.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.IdentityModel.Logging": "8.15.0" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.15.0.0", + "fileVersion": "8.15.0.61118" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NET.Test.Sdk/17.12.0": { + "dependencies": { + "Microsoft.CodeCoverage": "17.12.0", + "Microsoft.TestPlatform.TestHost": "17.12.0" + } + }, + "Microsoft.OpenApi/1.6.17": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.17.0", + "fileVersion": "1.6.17.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/17.12.0": { + "dependencies": { + "System.Reflection.Metadata": "1.6.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + } + }, + "Microsoft.TestPlatform.TestHost/17.12.0": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.12.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + }, + "lib/netcoreapp3.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.1200.24.56501" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "SixLabors.ImageSharp/3.1.12": { + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.1.12.0" + } + }, + "compile": { + "lib/net6.0/SixLabors.ImageSharp.dll": {} + } + }, + "System.Diagnostics.EventLog/9.0.0": {}, + "System.IdentityModel.Tokens.Jwt/8.15.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.15.0", + "Microsoft.IdentityModel.Tokens": "8.15.0" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.15.0.0", + "fileVersion": "8.15.0.61118" + } + }, + "compile": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.Reflection.Metadata/1.6.0": {}, + "xunit/2.9.2": { + "dependencies": { + "xunit.analyzers": "1.16.0", + "xunit.assert": "2.9.2", + "xunit.core": "2.9.2" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "0.0.0.0" + } + }, + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/1.16.0": {}, + "xunit.assert/2.9.2": { + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "assemblyVersion": "2.9.2.0", + "fileVersion": "2.9.2.0" + } + }, + "compile": { + "lib/net6.0/xunit.assert.dll": {} + } + }, + "xunit.core/2.9.2": { + "dependencies": { + "xunit.extensibility.core": "2.9.2", + "xunit.extensibility.execution": "2.9.2" + } + }, + "xunit.extensibility.core/2.9.2": { + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.9.2.0", + "fileVersion": "2.9.2.0" + } + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.9.2": { + "dependencies": { + "xunit.extensibility.core": "2.9.2" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.9.2.0", + "fileVersion": "2.9.2.0" + } + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.runner.visualstudio/2.8.2": {}, + "CDN/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.0", + "Microsoft.AspNetCore.OpenApi": "9.0.10", + "SixLabors.ImageSharp": "3.1.12" + }, + "runtime": { + "CDN.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "CDN.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.BearerToken/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.BearerToken.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Endpoints/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Endpoints.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Results/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Results.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpLogging/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpLogging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.OutputCaching/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.OutputCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RateLimiting/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RequestDecompression/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RequestDecompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticAssets/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticAssets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/9.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Features/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/9.0.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/9.0.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/9.0.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/9.0.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/14.0.0.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/9.0.0.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/9.0.0.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/9.0.0.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/9.0.0.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/9.0.0.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections/9.0.0.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable/9.0.0.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/9.0.0.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/9.0.0.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/9.0.0.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/9.0.0.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/9.0.0.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/9.0.0.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/9.0.0.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/9.0.0.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/9.0.0.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/9.0.0.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/9.0.0.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/9.0.0.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/9.0.0.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog.Reference/9.0.0.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/9.0.0.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/9.0.0.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/9.0.0.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/9.0.0.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/9.0.0.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/9.0.0.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/9.0.0.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/9.0.0.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/9.0.0.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Asn1/9.0.0.0": { + "compile": { + "System.Formats.Asn1.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Tar/9.0.0.0": { + "compile": { + "System.Formats.Tar.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/9.0.0.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization/9.0.0.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/9.0.0.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/9.0.0.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/9.0.0.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/9.0.0.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO/9.0.0.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.AccessControl/9.0.0.0": { + "compile": { + "System.IO.FileSystem.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/9.0.0.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/9.0.0.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/9.0.0.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/9.0.0.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/9.0.0.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/9.0.0.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/9.0.0.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes.AccessControl/9.0.0.0": { + "compile": { + "System.IO.Pipes.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/9.0.0.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/9.0.0.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq/9.0.0.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions/9.0.0.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/9.0.0.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/9.0.0.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory/9.0.0.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/9.0.0.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Json/9.0.0.0": { + "compile": { + "System.Net.Http.Json.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/9.0.0.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/9.0.0.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/9.0.0.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/9.0.0.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/9.0.0.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/9.0.0.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Quic/9.0.0.0": { + "compile": { + "System.Net.Quic.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/9.0.0.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/9.0.0.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/9.0.0.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/9.0.0.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/9.0.0.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/9.0.0.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/9.0.0.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/9.0.0.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/9.0.0.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/9.0.0.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel/9.0.0.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/9.0.0.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection/9.0.0.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit/9.0.0.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/9.0.0.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/9.0.0.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions/9.0.0.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/9.0.0.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives/9.0.0.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/9.0.0.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/9.0.0.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/9.0.0.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/9.0.0.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe/9.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/9.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime/9.0.0.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/9.0.0.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/9.0.0.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/9.0.0.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.JavaScript/9.0.0.0": { + "compile": { + "System.Runtime.InteropServices.JavaScript.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/9.0.0.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/9.0.0.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader/9.0.0.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/9.0.0.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/9.0.0.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/9.0.0.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/9.0.0.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/9.0.0.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/9.0.0.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography/9.0.0.0": { + "compile": { + "System.Security.Cryptography.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.OpenSsl/9.0.0.0": { + "compile": { + "System.Security.Cryptography.OpenSsl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/9.0.0.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/9.0.0.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/9.0.0.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/9.0.0.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages/9.0.0.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/9.0.0.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/9.0.0.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/9.0.0.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json/9.0.0.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/9.0.0.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/9.0.0.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading/9.0.0.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/9.0.0.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.RateLimiting/9.0.0.0": { + "compile": { + "System.Threading.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/9.0.0.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/9.0.0.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions/9.0.0.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/9.0.0.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/9.0.0.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/9.0.0.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/9.0.0.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/9.0.0.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/9.0.0.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/9.0.0.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/9.0.0.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/9.0.0.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/9.0.0.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/9.0.0.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/9.0.0.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/9.0.0.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "CDN.Tests/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "coverlet.collector/6.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==", + "path": "coverlet.collector/6.0.2", + "hashPath": "coverlet.collector.6.0.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bs+1Pq3vQdS2lTyxNUd9fEhtMsq3eLUpK36k2t56iDMVrk6OrAoFtvrQrTK0Y0OetTcJrUkGU7hBlf+ORzHLqQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Testing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4tyGN2cb2lVqMwqPhDhXAkTtSci8RJ0cFKVHEU3yj6I4krcbyQE6SJmAQr5Hq8ARyVopKUrQp/qniDje/1I07A==", + "path": "microsoft.aspnetcore.mvc.testing/9.0.0", + "hashPath": "microsoft.aspnetcore.mvc.testing.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yAv5EDEi0Nkk75Vhxh6ppuXd/QIO8hzjGpAt/fGInMZWIX/mVwZ1IM50YFIWeLCVM8KDj0oFPQdcLeQ+9hEJsw==", + "path": "microsoft.aspnetcore.openapi/9.0.10", + "hashPath": "microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512" + }, + "Microsoft.AspNetCore.TestHost/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5t8Qac05kJtFzsBxo+B3p0UcLNTRoWQf/1EbpaVBw9d7w2xL6RKYh0mqG+rPn2rulJDKeU3VfAd+r/YHdaKBg==", + "path": "microsoft.aspnetcore.testhost/9.0.0", + "hashPath": "microsoft.aspnetcore.testhost.9.0.0.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.12.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA==", + "path": "microsoft.codecoverage/17.12.0", + "hashPath": "microsoft.codecoverage.17.12.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "path": "microsoft.extensions.configuration/9.0.0", + "hashPath": "microsoft.extensions.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "hashPath": "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "path": "microsoft.extensions.configuration.json/9.0.0", + "hashPath": "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-saxr2XzwgDU77LaQfYFXmddEDRUKHF4DaGMZkNB3qjdVSZlax3//dGJagJkKrGMIPNZs2jVFXITyCCR6UHJNdA==", + "path": "microsoft.extensions.dependencymodel/9.0.0", + "hashPath": "microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "path": "microsoft.extensions.diagnostics/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "path": "microsoft.extensions.hosting/9.0.0", + "hashPath": "microsoft.extensions.hosting.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "hashPath": "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "path": "microsoft.extensions.logging.console/9.0.0", + "hashPath": "microsoft.extensions.logging.console.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "path": "microsoft.extensions.logging.debug/9.0.0", + "hashPath": "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e/DApa1GfxUqHSBHcpiQg8yaghKAvFVBQFcWh25jNoRobDZbduTUACY8bZ54eeGWXvimGmEDdF0zkS5Dq16XPQ==", + "path": "microsoft.identitymodel.abstractions/8.15.0", + "hashPath": "microsoft.identitymodel.abstractions.8.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3513f5VzvOZy3ELd42wGnh1Q3e83tlGAuXFSNbENpgWYoAhLLzgFtd5PiaOPGAU0gqKhYGVzKavghLUGfX3HQg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.15.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1gJLjhy0LV2RQMJ9NGzi5Tnb2l+c37o8D8Lrk2mrvmb6OQHZ7XJstd/XxvncXgBpad4x9CGXdipbZzJJCXKyAg==", + "path": "microsoft.identitymodel.logging/8.15.0", + "hashPath": "microsoft.identitymodel.logging.8.15.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zUE9ysJXBtXlHHRtcRK3Sp8NzdCI1z/BRDTXJQ2TvBoI0ENRtnufYIep0O5TSCJRJGDwwuLTUx+l/bEYZUxpCA==", + "path": "microsoft.identitymodel.tokens/8.15.0", + "hashPath": "microsoft.identitymodel.tokens.8.15.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.12.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kt/PKBZ91rFCWxVIJZSgVLk+YR+4KxTuHf799ho8WNiK5ZQpJNAEZCAWX86vcKrs+DiYjiibpYKdGZP6+/N17w==", + "path": "microsoft.net.test.sdk/17.12.0", + "hashPath": "microsoft.net.test.sdk.17.12.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.17": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==", + "path": "microsoft.openapi/1.6.17", + "hashPath": "microsoft.openapi.1.6.17.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.12.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TDqkTKLfQuAaPcEb3pDDWnh7b3SyZF+/W9OZvWFp6eJCIiiYFdSB6taE2I6tWrFw5ywhzOb6sreoGJTI6m3rSQ==", + "path": "microsoft.testplatform.objectmodel/17.12.0", + "hashPath": "microsoft.testplatform.objectmodel.17.12.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.12.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MiPEJQNyADfwZ4pJNpQex+t9/jOClBGMiCiVVFuELCMSX2nmNfvUor3uFVxNNCg30uxDP8JDYfPnMXQzsfzYyg==", + "path": "microsoft.testplatform.testhost/17.12.0", + "hashPath": "microsoft.testplatform.testhost.17.12.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "SixLabors.ImageSharp/3.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", + "path": "sixlabors.imagesharp/3.1.12", + "hashPath": "sixlabors.imagesharp.3.1.12.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dpodi7ixz6hxK8YCBYAWzm0IA8JYXoKcz0hbCbNifo519//rjUI0fBD8rfNr+IGqq+2gm4oQoXwHk09LX5SqqQ==", + "path": "system.identitymodel.tokens.jwt/8.15.0", + "hashPath": "system.identitymodel.tokens.jwt.8.15.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" + }, + "xunit/2.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7LhFS2N9Z6Xgg8aE5lY95cneYivRMfRI8v+4PATa4S64D5Z/Plkg0qa8dTRHSiGRgVZ/CL2gEfJDE5AUhOX+2Q==", + "path": "xunit/2.9.2", + "hashPath": "xunit.2.9.2.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.analyzers/1.16.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hptYM7vGr46GUIgZt21YHO4rfuBAQS2eINbFo16CV/Dqq+24Tp+P5gDCACu1AbFfW4Sp/WRfDPSK8fmUUb8s0Q==", + "path": "xunit.analyzers/1.16.0", + "hashPath": "xunit.analyzers.1.16.0.nupkg.sha512" + }, + "xunit.assert/2.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QkNBAQG4pa66cholm28AxijBjrmki98/vsEh4Sx5iplzotvPgpiotcxqJQMRC8d7RV7nIT8ozh97957hDnZwsQ==", + "path": "xunit.assert/2.9.2", + "hashPath": "xunit.assert.2.9.2.nupkg.sha512" + }, + "xunit.core/2.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O6RrNSdmZ0xgEn5kT927PNwog5vxTtKrWMihhhrT0Sg9jQ7iBDciYOwzBgP2krBEk5/GBXI18R1lKvmnxGcb4w==", + "path": "xunit.core/2.9.2", + "hashPath": "xunit.core.2.9.2.nupkg.sha512" + }, + "xunit.extensibility.core/2.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ol+KlBJz1x8BrdnhN2DeOuLrr1I/cTwtHCggL9BvYqFuVd/TUSzxNT5O0NxCIXth30bsKxgMfdqLTcORtM52yQ==", + "path": "xunit.extensibility.core/2.9.2", + "hashPath": "xunit.extensibility.core.2.9.2.nupkg.sha512" + }, + "xunit.extensibility.execution/2.9.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rKMpq4GsIUIJibXuZoZ8lYp5EpROlnYaRpwu9Zr0sRZXE7JqJfEEbCsUriZqB+ByXCLFBJyjkTRULMdC+U566g==", + "path": "xunit.extensibility.execution/2.9.2", + "hashPath": "xunit.extensibility.execution.2.9.2.nupkg.sha512" + }, + "xunit.runner.visualstudio/2.8.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vm1tbfXhFmjFMUmS4M0J0ASXz3/U5XvXBa6DOQUL3fEz4Vt6YPhv+ESCarx6M6D+9kJkJYZKCNvJMas1+nVfmQ==", + "path": "xunit.runner.visualstudio/2.8.2", + "hashPath": "xunit.runner.visualstudio.2.8.2.nupkg.sha512" + }, + "CDN/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.BearerToken/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Endpoints/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Results/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpLogging/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OutputCaching/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RateLimiting/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RequestDecompression/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticAssets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Binder.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.CommandLine.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.FileExtensions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Json.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.UserSecrets.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Features/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Physical.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileSystemGlobbing.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Primitives.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/14.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Asn1/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Tar/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.AccessControl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes.AccessControl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Quic/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.JavaScript/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.OpenSsl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.RateLimiting/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.Tests.dll b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.dll new file mode 100644 index 0000000..50e92ae Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.Tests.pdb b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.pdb new file mode 100644 index 0000000..f723098 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.pdb differ diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.Tests.runtimeconfig.json b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.runtimeconfig.json new file mode 100644 index 0000000..27e402f --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/CDN.Tests.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.deps.json b/CDN.Tests/bin/Debug/net9.0/CDN.deps.json new file mode 100644 index 0000000..b505293 --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/CDN.deps.json @@ -0,0 +1,219 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "CDN/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.0", + "Microsoft.AspNetCore.OpenApi": "9.0.10", + "SixLabors.ImageSharp": "3.1.12" + }, + "runtime": { + "CDN.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47517" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.OpenApi/1.6.17": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.17.0", + "fileVersion": "1.6.17.0" + } + } + }, + "SixLabors.ImageSharp/3.1.12": { + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.1.12.0" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + } + } + }, + "libraries": { + "CDN/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bs+1Pq3vQdS2lTyxNUd9fEhtMsq3eLUpK36k2t56iDMVrk6OrAoFtvrQrTK0Y0OetTcJrUkGU7hBlf+ORzHLqQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yAv5EDEi0Nkk75Vhxh6ppuXd/QIO8hzjGpAt/fGInMZWIX/mVwZ1IM50YFIWeLCVM8KDj0oFPQdcLeQ+9hEJsw==", + "path": "microsoft.aspnetcore.openapi/9.0.10", + "hashPath": "microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OtlIWcyX01olfdevPKZdIPfBEvbcioDyBiE/Z2lHsopsMD7twcKtlN9kMevHmI5IIPhFpfwCIiR6qHQz1WHUIw==", + "path": "microsoft.identitymodel.abstractions/8.0.1", + "hashPath": "microsoft.identitymodel.abstractions.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s6++gF9x0rQApQzOBbSyp4jUaAlwm+DroKfL8gdOHxs83k8SJfUXhuc46rDB3rNXBQ1MVRxqKUrqFhO/M0E97g==", + "path": "microsoft.identitymodel.jsonwebtokens/8.0.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UCPF2exZqBXe7v/6sGNiM6zCQOUXXQ9+v5VTb9gPB8ZSUPnX53BxlN78v2jsbIvK9Dq4GovQxo23x8JgWvm/Qg==", + "path": "microsoft.identitymodel.logging/8.0.1", + "hashPath": "microsoft.identitymodel.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kDimB6Dkd3nkW2oZPDkMkVHfQt3IDqO5gL0oa8WVy3OP4uE8Ij+8TXnqg9TOd9ufjsY3IDiGz7pCUbnfL18tjg==", + "path": "microsoft.identitymodel.tokens/8.0.1", + "hashPath": "microsoft.identitymodel.tokens.8.0.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.17": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==", + "path": "microsoft.openapi/1.6.17", + "hashPath": "microsoft.openapi.1.6.17.nupkg.sha512" + }, + "SixLabors.ImageSharp/3.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", + "path": "sixlabors.imagesharp/3.1.12", + "hashPath": "sixlabors.imagesharp.3.1.12.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJw3bYkWpOgvN3tJo5X4lYUeIFA2HD293FPUhKmp7qxS+g5ywAb34Dnd3cDAFLkcMohy5XTpoaZ4uAHuw0uSPQ==", + "path": "system.identitymodel.tokens.jwt/8.0.1", + "hashPath": "system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.dll b/CDN.Tests/bin/Debug/net9.0/CDN.dll new file mode 100644 index 0000000..467f9fd Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/CDN.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.pdb b/CDN.Tests/bin/Debug/net9.0/CDN.pdb new file mode 100644 index 0000000..e25e5aa Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/CDN.pdb differ diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.runtimeconfig.json b/CDN.Tests/bin/Debug/net9.0/CDN.runtimeconfig.json new file mode 100644 index 0000000..6925b65 --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/CDN.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/CDN.Tests/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json b/CDN.Tests/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/CDN.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CDN.Tests b/CDN.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CDN.Tests new file mode 100644 index 0000000..b333d64 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CDN.Tests differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100755 index 0000000..ca76774 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll new file mode 100755 index 0000000..c97800c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..ac18935 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.TestHost.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.TestHost.dll new file mode 100755 index 0000000..0cdafb9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.TestHost.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..e8ee78b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100755 index 0000000..2d40123 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..4dbd2dc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..71409e6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 0000000..6c736d2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..9f30508 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..9678d3c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..d9f09da Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100755 index 0000000..f018486 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100755 index 0000000..da3396e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100755 index 0000000..d3f461d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100755 index 0000000..ad4e8c7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll new file mode 100755 index 0000000..02ccb37 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100755 index 0000000..43d029f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100755 index 0000000..0fa6eb1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100755 index 0000000..bb7a277 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/MvcTestingAppManifest.json b/CDN.Tests/bin/Debug/net9.0/MvcTestingAppManifest.json new file mode 100644 index 0000000..73f201c --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/MvcTestingAppManifest.json @@ -0,0 +1,3 @@ +{ + "CDN, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "\/mnt\/Dataa\/Work\/Programming\/MainProgram\/Backend\/APIs\/CDN\/CDN" +} \ No newline at end of file diff --git a/CDN.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll b/CDN.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..1ffeabe Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/SixLabors.ImageSharp.dll b/CDN.Tests/bin/Debug/net9.0/SixLabors.ImageSharp.dll new file mode 100755 index 0000000..7302493 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/SixLabors.ImageSharp.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll b/CDN.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 0000000..f689393 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/appsettings.Development.json b/CDN.Tests/bin/Debug/net9.0/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/CDN.Tests/bin/Debug/net9.0/appsettings.json b/CDN.Tests/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..d9c1cbf --- /dev/null +++ b/CDN.Tests/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,14 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "JWT": { + "Key": "this_is_a_very_secret_key_for_development_purposes", + "Issuer": "MassTechCDN", + "Audience": "MassTechClients" + } +} \ No newline at end of file diff --git a/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..6a22512 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..83c68f1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..5f56087 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..87f03f5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..252c548 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..c405cb0 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..0b8d7a2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..8a40450 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..094510e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..f2ea114 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..a4f9b88 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..1cedf43 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..50efa40 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..8609499 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..5d22850 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..6c3f966 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..1354d08 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..97f4c62 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..efeda12 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..ca6b10d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..000757f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..4cd8054 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..411d2b3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..b13b763 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..af71519 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..7239741 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..5793f35 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..8cff118 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..41f33a3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..a959dc6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..89b460c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..357c278 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..843f9bc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..aaeb3f0 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..f158708 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..3cd44ff Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..cc17f24 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..56d009b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..5bb5c00 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..ef229ea Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..6d333ed Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..de5092c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..df016c7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..87366d2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..06c0baf Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll new file mode 100755 index 0000000..74cd5e4 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100755 index 0000000..b00da5f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll new file mode 100755 index 0000000..fcc01e5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100755 index 0000000..2d914aa Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100755 index 0000000..7fb1e38 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100755 index 0000000..fcfc1a6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll new file mode 100755 index 0000000..35c1e4e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100755 index 0000000..42d847b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll new file mode 100755 index 0000000..78ab5fc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100755 index 0000000..f404a80 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll new file mode 100755 index 0000000..e47a035 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll new file mode 100755 index 0000000..ab71eea Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll new file mode 100755 index 0000000..f149694 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll new file mode 100755 index 0000000..4770a39 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll new file mode 100755 index 0000000..382967b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100755 index 0000000..42e204e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100755 index 0000000..9eb1fa5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll new file mode 100755 index 0000000..3dd0182 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100755 index 0000000..0ec5c1d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100755 index 0000000..a6dc713 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100755 index 0000000..b6aec4f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100755 index 0000000..03e4af3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll new file mode 100755 index 0000000..32d604b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..0cc89df Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100755 index 0000000..59000d8 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll new file mode 100755 index 0000000..4340a25 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll new file mode 100755 index 0000000..8cfaa12 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100755 index 0000000..988532d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100755 index 0000000..597fc96 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll new file mode 100755 index 0000000..10ef0fc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100755 index 0000000..24a1404 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100755 index 0000000..3bc7579 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100755 index 0000000..3bef5c7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll new file mode 100755 index 0000000..199e867 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100755 index 0000000..7dcb1dc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll new file mode 100755 index 0000000..1c8959b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll new file mode 100755 index 0000000..2b27e20 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll new file mode 100755 index 0000000..f9da9ce Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll new file mode 100755 index 0000000..37c8f91 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100755 index 0000000..5c9fa6e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100755 index 0000000..84c0cab Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll new file mode 100755 index 0000000..82f8d02 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100755 index 0000000..7f9a310 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll new file mode 100755 index 0000000..be6cf67 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll new file mode 100755 index 0000000..d5126c6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100755 index 0000000..9365ac6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100755 index 0000000..65d6b47 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100755 index 0000000..aaa4e33 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100755 index 0000000..8bf158c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100755 index 0000000..f7607c9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100755 index 0000000..5e6882b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100755 index 0000000..3b939cf Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100755 index 0000000..c4fa392 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100755 index 0000000..9f35208 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100755 index 0000000..720bc16 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100755 index 0000000..c50300a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100755 index 0000000..8264612 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll new file mode 100755 index 0000000..e624c30 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll new file mode 100755 index 0000000..bcbe349 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll new file mode 100755 index 0000000..2135e9a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100755 index 0000000..2baae4e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll new file mode 100755 index 0000000..b3679d2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll new file mode 100755 index 0000000..e0276c9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100755 index 0000000..501fce9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100755 index 0000000..e19ce3f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100755 index 0000000..c0ea36d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll new file mode 100755 index 0000000..0992482 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100755 index 0000000..88b7f27 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll new file mode 100755 index 0000000..380a7e7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100755 index 0000000..8230984 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll new file mode 100755 index 0000000..ed719ba Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100755 index 0000000..950199f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100755 index 0000000..0fdc823 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100755 index 0000000..8437d53 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100755 index 0000000..e6360a6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100755 index 0000000..ca5bfab Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100755 index 0000000..2d55075 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll new file mode 100755 index 0000000..988164e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100755 index 0000000..da8c9e5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100755 index 0000000..4e462fc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100755 index 0000000..dcff248 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll new file mode 100755 index 0000000..a733c1f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll new file mode 100755 index 0000000..e78bb7f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll new file mode 100755 index 0000000..ed497bb Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll new file mode 100755 index 0000000..bd3982f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll new file mode 100755 index 0000000..e9d31bf Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll new file mode 100755 index 0000000..0527af4 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.CSharp.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.CSharp.dll new file mode 100755 index 0000000..11ad77b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.CSharp.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..84ecc56 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..30d8716 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..16228ae Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll new file mode 100755 index 0000000..65dfea1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100755 index 0000000..2447df3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100755 index 0000000..256aed1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100755 index 0000000..0b109b2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll new file mode 100755 index 0000000..3f5090c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll new file mode 100755 index 0000000..ffb2749 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100755 index 0000000..8c30892 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100755 index 0000000..c915701 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll new file mode 100755 index 0000000..30158ff Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll new file mode 100755 index 0000000..a91cf54 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..d3dcefe Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..ca70a9a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..490276e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100755 index 0000000..0c5af79 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100755 index 0000000..e36e41c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll new file mode 100755 index 0000000..7c43bc1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll new file mode 100755 index 0000000..d4b3190 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100755 index 0000000..23a1f6d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100755 index 0000000..a2e8d26 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100755 index 0000000..ef665e0 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100755 index 0000000..6af1aab Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100755 index 0000000..5734c75 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100755 index 0000000..83e3193 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll new file mode 100755 index 0000000..95e67f3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll new file mode 100755 index 0000000..643cdbf Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll new file mode 100755 index 0000000..892bc9d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll new file mode 100755 index 0000000..c5caf1c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100755 index 0000000..6e72154 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll new file mode 100755 index 0000000..add4bab Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..94fbd52 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll new file mode 100755 index 0000000..0ca5161 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll new file mode 100755 index 0000000..c0803bc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll new file mode 100755 index 0000000..4ffcfed Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll new file mode 100755 index 0000000..6a0bd43 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll new file mode 100755 index 0000000..06fff2b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100755 index 0000000..92e7476 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..3bc1e15 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll new file mode 100755 index 0000000..7760d5e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100755 index 0000000..34c7173 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100755 index 0000000..4dd9e54 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..4779f50 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..a6693c1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll new file mode 100755 index 0000000..d19843d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll new file mode 100755 index 0000000..65778fd Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll new file mode 100755 index 0000000..6032247 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll new file mode 100755 index 0000000..409724a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll new file mode 100755 index 0000000..992dc51 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll new file mode 100755 index 0000000..6530627 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll new file mode 100755 index 0000000..9e1719b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.AppContext.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.AppContext.dll new file mode 100755 index 0000000..853ae8b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.AppContext.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Buffers.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Buffers.dll new file mode 100755 index 0000000..4260a52 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Buffers.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll new file mode 100755 index 0000000..3bd635b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Immutable.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Immutable.dll new file mode 100755 index 0000000..a268e59 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Immutable.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll new file mode 100755 index 0000000..bb557e8 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Specialized.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Specialized.dll new file mode 100755 index 0000000..4561de6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Specialized.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.dll new file mode 100755 index 0000000..eeb835d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll new file mode 100755 index 0000000..da31618 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll new file mode 100755 index 0000000..cd048ab Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll new file mode 100755 index 0000000..dfa0b6f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll new file mode 100755 index 0000000..ba62522 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll new file mode 100755 index 0000000..097d844 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.dll new file mode 100755 index 0000000..a80f65f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Configuration.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Configuration.dll new file mode 100755 index 0000000..9fb77be Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Configuration.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Console.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Console.dll new file mode 100755 index 0000000..88806cd Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Console.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Core.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Core.dll new file mode 100755 index 0000000..9994946 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Data.Common.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Data.Common.dll new file mode 100755 index 0000000..ddc5afd Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Data.Common.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll new file mode 100755 index 0000000..d60d7d9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Data.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Data.dll new file mode 100755 index 0000000..497d46f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Data.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll new file mode 100755 index 0000000..fc40818 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll new file mode 100755 index 0000000..667cfb5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 0000000..dc79565 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll new file mode 100755 index 0000000..b92c049 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll new file mode 100755 index 0000000..d395d83 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll new file mode 100755 index 0000000..b473ebc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll new file mode 100755 index 0000000..f5e83ed Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll new file mode 100755 index 0000000..7606aa0 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll new file mode 100755 index 0000000..8b6e855 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll new file mode 100755 index 0000000..327b2b7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll new file mode 100755 index 0000000..37d7013 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll new file mode 100755 index 0000000..b4c7e7d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.dll new file mode 100755 index 0000000..18756df Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll new file mode 100755 index 0000000..e6c3cae Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Asn1.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Asn1.dll new file mode 100755 index 0000000..f2f936f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Asn1.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Tar.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Tar.dll new file mode 100755 index 0000000..8c9b9f9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Tar.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll new file mode 100755 index 0000000..973c62b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll new file mode 100755 index 0000000..8f42d15 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.dll new file mode 100755 index 0000000..3f6e0de Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll new file mode 100755 index 0000000..dbb4933 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll new file mode 100755 index 0000000..0279cb5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll new file mode 100755 index 0000000..2971465 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.dll new file mode 100755 index 0000000..e7f3852 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll new file mode 100755 index 0000000..ac18a85 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll new file mode 100755 index 0000000..3a83200 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll new file mode 100755 index 0000000..da533c2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll new file mode 100755 index 0000000..a07aa86 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.dll new file mode 100755 index 0000000..986ad1b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll new file mode 100755 index 0000000..12095ca Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll new file mode 100755 index 0000000..ed99b65 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipelines.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipelines.dll new file mode 100755 index 0000000..80e366a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipelines.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll new file mode 100755 index 0000000..310ac95 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.dll new file mode 100755 index 0000000..aa8eff3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll new file mode 100755 index 0000000..be3713d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.IO.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.dll new file mode 100755 index 0000000..7bdbd2f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.IO.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Expressions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Expressions.dll new file mode 100755 index 0000000..e2498b1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Expressions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Parallel.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Parallel.dll new file mode 100755 index 0000000..bd63fa8 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Parallel.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Queryable.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Queryable.dll new file mode 100755 index 0000000..4ac401d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Queryable.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.dll new file mode 100755 index 0000000..4a58266 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Memory.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Memory.dll new file mode 100755 index 0000000..96a20c7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Memory.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.Json.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.Json.dll new file mode 100755 index 0000000..d6c4e33 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.Json.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.dll new file mode 100755 index 0000000..a78ae96 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.HttpListener.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.HttpListener.dll new file mode 100755 index 0000000..75d559c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.HttpListener.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Mail.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Mail.dll new file mode 100755 index 0000000..7280485 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Mail.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NameResolution.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NameResolution.dll new file mode 100755 index 0000000..89bf1d3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NameResolution.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll new file mode 100755 index 0000000..4a0861a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Ping.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Ping.dll new file mode 100755 index 0000000..e399902 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Ping.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Primitives.dll new file mode 100755 index 0000000..fedfa21 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Quic.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Quic.dll new file mode 100755 index 0000000..6d6a448 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Quic.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Requests.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Requests.dll new file mode 100755 index 0000000..23e8e88 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Requests.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Security.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Security.dll new file mode 100755 index 0000000..a4c6405 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Security.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll new file mode 100755 index 0000000..cddef74 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Sockets.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Sockets.dll new file mode 100755 index 0000000..f74596c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Sockets.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebClient.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebClient.dll new file mode 100755 index 0000000..ded543f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebClient.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll new file mode 100755 index 0000000..3d436ef Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebProxy.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebProxy.dll new file mode 100755 index 0000000..f00cdc7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebProxy.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll new file mode 100755 index 0000000..b34f4f7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.dll new file mode 100755 index 0000000..186a244 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Net.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.dll new file mode 100755 index 0000000..e6f247a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Net.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll new file mode 100755 index 0000000..1a68cd3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.dll new file mode 100755 index 0000000..5e9c73c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ObjectModel.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ObjectModel.dll new file mode 100755 index 0000000..74a12ff Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ObjectModel.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll new file mode 100755 index 0000000..8fd03f9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll new file mode 100755 index 0000000..724ef14 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..32fa92d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.dll new file mode 100755 index 0000000..777eca2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll new file mode 100755 index 0000000..525a6b1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll new file mode 100755 index 0000000..2389e46 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll new file mode 100755 index 0000000..0857abc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll new file mode 100755 index 0000000..750d6de Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.dll new file mode 100755 index 0000000..f90ee3f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Reader.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Reader.dll new file mode 100755 index 0000000..a461e9c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Reader.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll new file mode 100755 index 0000000..48e3c29 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Writer.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Writer.dll new file mode 100755 index 0000000..8ffcc9c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Writer.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..d1d4e30 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll new file mode 100755 index 0000000..f177573 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll new file mode 100755 index 0000000..6acff16 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Handles.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Handles.dll new file mode 100755 index 0000000..87cd29b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Handles.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll new file mode 100755 index 0000000..1dffc8b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100755 index 0000000..6d3f3cf Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll new file mode 100755 index 0000000..bd65c4c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll new file mode 100755 index 0000000..357f53d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Loader.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Loader.dll new file mode 100755 index 0000000..342ac0e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Loader.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll new file mode 100755 index 0000000..c1a9579 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll new file mode 100755 index 0000000..2500477 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll new file mode 100755 index 0000000..aba1fd1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll new file mode 100755 index 0000000..71fc061 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll new file mode 100755 index 0000000..8157b54 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll new file mode 100755 index 0000000..f1c103f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.dll new file mode 100755 index 0000000..38ee9a4 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.AccessControl.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.AccessControl.dll new file mode 100755 index 0000000..b55d608 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.AccessControl.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Claims.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Claims.dll new file mode 100755 index 0000000..6f959e1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Claims.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll new file mode 100755 index 0000000..d5259aa Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll new file mode 100755 index 0000000..1827bce Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll new file mode 100755 index 0000000..f9df5d5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll new file mode 100755 index 0000000..17e70a9 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll new file mode 100755 index 0000000..f886237 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll new file mode 100755 index 0000000..c6701a6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll new file mode 100755 index 0000000..e52ebf1 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll new file mode 100755 index 0000000..3b1b12f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.dll new file mode 100755 index 0000000..1f24f30 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll new file mode 100755 index 0000000..fbef70b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.dll new file mode 100755 index 0000000..3b81354 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.SecureString.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.SecureString.dll new file mode 100755 index 0000000..17e6b25 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.SecureString.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Security.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.dll new file mode 100755 index 0000000..978afeb Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Security.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll new file mode 100755 index 0000000..97b076b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceProcess.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceProcess.dll new file mode 100755 index 0000000..2b1528d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceProcess.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll new file mode 100755 index 0000000..0660c3f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll new file mode 100755 index 0000000..5022bdc Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.dll new file mode 100755 index 0000000..cc7f98c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..207907b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Json.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Json.dll new file mode 100755 index 0000000..6a4ce26 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Json.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll new file mode 100755 index 0000000..f7190d4 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Channels.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Channels.dll new file mode 100755 index 0000000..c6b0f25 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Channels.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll new file mode 100755 index 0000000..647d909 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll new file mode 100755 index 0000000..da5ae27 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll new file mode 100755 index 0000000..3ef3261 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..48e7d74 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll new file mode 100755 index 0000000..1155a44 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.dll new file mode 100755 index 0000000..e0202b4 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Thread.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Thread.dll new file mode 100755 index 0000000..d2c91fb Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Thread.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll new file mode 100755 index 0000000..71fbbaf Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Timer.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Timer.dll new file mode 100755 index 0000000..c4844dd Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Timer.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.dll new file mode 100755 index 0000000..0a9bd54 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.Local.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.Local.dll new file mode 100755 index 0000000..71cc000 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.Local.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.dll new file mode 100755 index 0000000..9628c21 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.ValueTuple.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.ValueTuple.dll new file mode 100755 index 0000000..6a54b79 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.ValueTuple.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll new file mode 100755 index 0000000..d50b89f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Web.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Web.dll new file mode 100755 index 0000000..b5782ab Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Web.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Windows.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Windows.dll new file mode 100755 index 0000000..7929719 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Windows.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Linq.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Linq.dll new file mode 100755 index 0000000..201168f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Linq.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll new file mode 100755 index 0000000..55f1ff6 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Serialization.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Serialization.dll new file mode 100755 index 0000000..333c965 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Serialization.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XDocument.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XDocument.dll new file mode 100755 index 0000000..34b6290 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XDocument.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll new file mode 100755 index 0000000..af6e077 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.dll new file mode 100755 index 0000000..6e5ca7a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll new file mode 100755 index 0000000..9744519 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll new file mode 100755 index 0000000..f36e294 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.dll new file mode 100755 index 0000000..c58deaa Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/System.dll b/CDN.Tests/bin/Debug/net9.0/refs/System.dll new file mode 100755 index 0000000..9b2ad4d Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/System.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/WindowsBase.dll b/CDN.Tests/bin/Debug/net9.0/refs/WindowsBase.dll new file mode 100755 index 0000000..64c90e7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/WindowsBase.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/mscorlib.dll b/CDN.Tests/bin/Debug/net9.0/refs/mscorlib.dll new file mode 100755 index 0000000..da296d4 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/mscorlib.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/refs/netstandard.dll b/CDN.Tests/bin/Debug/net9.0/refs/netstandard.dll new file mode 100755 index 0000000..44ab1e7 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/refs/netstandard.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..65bb33a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..479e58e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..7fb9358 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..f146cd3 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..11840ed Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/testhost.dll b/CDN.Tests/bin/Debug/net9.0/testhost.dll new file mode 100755 index 0000000..6023d9b Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/testhost.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..66a78d2 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..a35ce7c Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..588f20e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..204c223 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..cce1aac Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/wwwroot/uploads/3c2744ca-e7ba-480e-aa14-ed7cb50d4c20.webp b/CDN.Tests/bin/Debug/net9.0/wwwroot/uploads/3c2744ca-e7ba-480e-aa14-ed7cb50d4c20.webp new file mode 100644 index 0000000..de395c5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/wwwroot/uploads/3c2744ca-e7ba-480e-aa14-ed7cb50d4c20.webp differ diff --git a/CDN.Tests/bin/Debug/net9.0/wwwroot/uploads/528bb4e0-d8c6-4084-bf91-94b93e493442.webp b/CDN.Tests/bin/Debug/net9.0/wwwroot/uploads/528bb4e0-d8c6-4084-bf91-94b93e493442.webp new file mode 100644 index 0000000..de395c5 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/wwwroot/uploads/528bb4e0-d8c6-4084-bf91-94b93e493442.webp differ diff --git a/CDN.Tests/bin/Debug/net9.0/xunit.abstractions.dll b/CDN.Tests/bin/Debug/net9.0/xunit.abstractions.dll new file mode 100755 index 0000000..d1e90bf Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/xunit.abstractions.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/xunit.assert.dll b/CDN.Tests/bin/Debug/net9.0/xunit.assert.dll new file mode 100755 index 0000000..8aa9a0e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/xunit.assert.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/xunit.core.dll b/CDN.Tests/bin/Debug/net9.0/xunit.core.dll new file mode 100755 index 0000000..6c02a16 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/xunit.core.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll b/CDN.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll new file mode 100755 index 0000000..5613a34 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll b/CDN.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll new file mode 100755 index 0000000..ca76232 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll b/CDN.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll new file mode 100755 index 0000000..c247a4e Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll b/CDN.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll new file mode 100755 index 0000000..2c4b812 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..fef8bc0 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..5a3ae3f Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..95e6929 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..ae8b0fb Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..af4c95a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..bd707dd Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..9271175 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..b1e1340 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..577aa5a Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..c04de36 Binary files /dev/null and b/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/CDN.Tests/obj/CDN.Tests.csproj.nuget.dgspec.json b/CDN.Tests/obj/CDN.Tests.csproj.nuget.dgspec.json new file mode 100644 index 0000000..1554dfd --- /dev/null +++ b/CDN.Tests/obj/CDN.Tests.csproj.nuget.dgspec.json @@ -0,0 +1,175 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/CDN.Tests.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/CDN.Tests.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/CDN.Tests.csproj", + "projectName": "CDN.Tests", + "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/CDN.Tests.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Testing": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.12.0, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.15.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.9.2, )" + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[2.8.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj", + "projectName": "CDN", + "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.10, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[3.1.12, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/CDN.Tests/obj/CDN.Tests.csproj.nuget.g.props b/CDN.Tests/obj/CDN.Tests.csproj.nuget.g.props new file mode 100644 index 0000000..2911b4f --- /dev/null +++ b/CDN.Tests/obj/CDN.Tests.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.14.0 + + + + + + + + + + + + + + /home/yla/.nuget/packages/xunit.analyzers/1.16.0 + + \ No newline at end of file diff --git a/CDN.Tests/obj/CDN.Tests.csproj.nuget.g.targets b/CDN.Tests/obj/CDN.Tests.csproj.nuget.g.targets new file mode 100644 index 0000000..3703cf2 --- /dev/null +++ b/CDN.Tests/obj/CDN.Tests.csproj.nuget.g.targets @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CDN.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/CDN.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/CDN.Tests/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/CDN.Tests/obj/Debug/net10.0/CDN.Tests.AssemblyInfo.cs b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.AssemblyInfo.cs new file mode 100644 index 0000000..f2b9a6c --- /dev/null +++ b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CDN.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d222d4e9e3857c2f163948e86429fb396104f399")] +[assembly: System.Reflection.AssemblyProductAttribute("CDN.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("CDN.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/CDN.Tests/obj/Debug/net10.0/CDN.Tests.AssemblyInfoInputs.cache b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1d1a0d9 --- /dev/null +++ b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +588445dfdf9bf09ddf5e7428627cf0992e6501be1e4b544c1f9d00e5b7b96dcb diff --git a/CDN.Tests/obj/Debug/net10.0/CDN.Tests.GeneratedMSBuildEditorConfig.editorconfig b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..348b2a2 --- /dev/null +++ b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = CDN.Tests +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/CDN.Tests/obj/Debug/net10.0/CDN.Tests.GlobalUsings.g.cs b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.GlobalUsings.g.cs new file mode 100644 index 0000000..fe43752 --- /dev/null +++ b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; +global using Xunit; diff --git a/CDN.Tests/obj/Debug/net10.0/CDN.Tests.csproj.AssemblyReference.cache b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8b9c4eb Binary files /dev/null and b/CDN.Tests/obj/Debug/net10.0/CDN.Tests.csproj.AssemblyReference.cache differ diff --git a/CDN.Tests/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/CDN.Tests/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfo.cs b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfo.cs new file mode 100644 index 0000000..80a4732 --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CDN.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+206dfeabd74212fb6442b2ac195b5904b0472cb7")] +[assembly: System.Reflection.AssemblyProductAttribute("CDN.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("CDN.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfoInputs.cache b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3127613 --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f69173f712a039206d0d345d0fc5952df49d310fb37efe4a5945353f3b160dc2 diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.GeneratedMSBuildEditorConfig.editorconfig b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7585204 --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = CDN.Tests +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.GlobalUsings.g.cs b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.GlobalUsings.g.cs new file mode 100644 index 0000000..fe43752 --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; +global using Xunit; diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.assets.cache b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.assets.cache new file mode 100644 index 0000000..59a6623 Binary files /dev/null and b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.assets.cache differ diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.AssemblyReference.cache b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d5ed01c Binary files /dev/null and b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.AssemblyReference.cache differ diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.CoreCompileInputs.cache b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2b5a895 --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +59f57ebdffc0f15b23b00b410feb2fb10844e6666e9cc815b463d7d43e1e19e4 diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.FileListAbsolute.txt b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..952339a --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.FileListAbsolute.txt @@ -0,0 +1,425 @@ +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CDN.Tests +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CDN.Tests +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/appsettings.Development.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/appsettings.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/MvcTestingAppManifest.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.Tests.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.Tests.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.Tests.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.Tests.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.CSharp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/mscorlib.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/netstandard.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.AppContext.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Buffers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Collections.Specialized.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Console.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Data.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Data.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Asn1.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Formats.Tar.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipelines.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.Pipes.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Expressions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Parallel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Linq.Queryable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Http.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.HttpListener.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Mail.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NameResolution.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Ping.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Quic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Requests.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Security.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.Sockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebClient.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebProxy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Net.WebSockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ObjectModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Reader.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Resources.Writer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Handles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Loader.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Claims.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Security.SecureString.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ServiceProcess.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Text.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Channels.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Thread.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Threading.Timer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Transactions.Local.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.ValueTuple.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Windows.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Linq.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.Serialization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/refs/WindowsBase.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.TestHost.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/testhost.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/SixLabors.ImageSharp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/xunit.abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/xunit.assert.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/xunit.core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/CDN.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/MvcTestingAppManifest.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/refint/CDN.Tests.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/CDN.Tests.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/Debug/net9.0/ref/CDN.Tests.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.Up2Date b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.dll b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.dll new file mode 100644 index 0000000..50e92ae Binary files /dev/null and b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.dll differ diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.genruntimeconfig.cache b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.genruntimeconfig.cache new file mode 100644 index 0000000..b43113a --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.genruntimeconfig.cache @@ -0,0 +1 @@ +c01a92ad9f6bdd49c563cb8327572d75828105d27ef7561032295a0a63d74858 diff --git a/CDN.Tests/obj/Debug/net9.0/CDN.Tests.pdb b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.pdb new file mode 100644 index 0000000..f723098 Binary files /dev/null and b/CDN.Tests/obj/Debug/net9.0/CDN.Tests.pdb differ diff --git a/CDN.Tests/obj/Debug/net9.0/MvcTestingAppManifest.json b/CDN.Tests/obj/Debug/net9.0/MvcTestingAppManifest.json new file mode 100644 index 0000000..73f201c --- /dev/null +++ b/CDN.Tests/obj/Debug/net9.0/MvcTestingAppManifest.json @@ -0,0 +1,3 @@ +{ + "CDN, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "\/mnt\/Dataa\/Work\/Programming\/MainProgram\/Backend\/APIs\/CDN\/CDN" +} \ No newline at end of file diff --git a/CDN.Tests/obj/Debug/net9.0/ref/CDN.Tests.dll b/CDN.Tests/obj/Debug/net9.0/ref/CDN.Tests.dll new file mode 100644 index 0000000..b5d9339 Binary files /dev/null and b/CDN.Tests/obj/Debug/net9.0/ref/CDN.Tests.dll differ diff --git a/CDN.Tests/obj/Debug/net9.0/refint/CDN.Tests.dll b/CDN.Tests/obj/Debug/net9.0/refint/CDN.Tests.dll new file mode 100644 index 0000000..b5d9339 Binary files /dev/null and b/CDN.Tests/obj/Debug/net9.0/refint/CDN.Tests.dll differ diff --git a/CDN.Tests/obj/project.assets.json b/CDN.Tests/obj/project.assets.json new file mode 100644 index 0000000..dfadde8 --- /dev/null +++ b/CDN.Tests/obj/project.assets.json @@ -0,0 +1,3073 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "coverlet.collector/6.0.2": { + "type": "package", + "build": { + "build/netstandard2.0/coverlet.collector.targets": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Testing/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.TestHost": "9.0.0", + "Microsoft.Extensions.DependencyModel": "9.0.0", + "Microsoft.Extensions.Hosting": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net9.0/Microsoft.AspNetCore.Mvc.Testing.targets": {} + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.TestHost/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.AspNetCore.TestHost.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.TestHost.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.CodeCoverage/17.12.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Physical": "9.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.IdentityModel.Abstractions/8.15.0": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.15.0" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/8.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.15.0" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.15.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.IdentityModel.Logging": "8.15.0" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.Test.Sdk/17.12.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.12.0", + "Microsoft.TestPlatform.TestHost": "17.12.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": {} + }, + "runtime": { + "lib/netcoreapp3.1/_._": {} + }, + "build": { + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.OpenApi/1.6.17": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/17.12.0": { + "type": "package", + "dependencies": { + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.12.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.12.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "SixLabors.ImageSharp/3.1.12": { + "type": "package", + "compile": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "build": { + "build/_._": {} + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.15.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.15.0", + "Microsoft.IdentityModel.Tokens": "8.15.0" + }, + "compile": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "xunit/2.9.2": { + "type": "package", + "dependencies": { + "xunit.analyzers": "1.16.0", + "xunit.assert": "2.9.2", + "xunit.core": "[2.9.2]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "related": ".xml" + } + } + }, + "xunit.analyzers/1.16.0": { + "type": "package" + }, + "xunit.assert/2.9.2": { + "type": "package", + "compile": { + "lib/net6.0/xunit.assert.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "related": ".xml" + } + } + }, + "xunit.core/2.9.2": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.9.2]", + "xunit.extensibility.execution": "[2.9.2]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.9.2": { + "type": "package", + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "related": ".xml" + } + } + }, + "xunit.extensibility.execution/2.9.2": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.9.2]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "related": ".xml" + } + } + }, + "xunit.runner.visualstudio/2.8.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "build": { + "build/net6.0/xunit.runner.visualstudio.props": {} + } + }, + "CDN/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v9.0", + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.0", + "Microsoft.AspNetCore.OpenApi": "9.0.10", + "SixLabors.ImageSharp": "3.1.12" + }, + "compile": { + "bin/placeholder/CDN.dll": {} + }, + "runtime": { + "bin/placeholder/CDN.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "coverlet.collector/6.0.2": { + "sha512": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==", + "type": "package", + "path": "coverlet.collector/6.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "VSTestIntegration.md", + "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard2.0/Mono.Cecil.Mdb.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/Newtonsoft.Json.dll", + "build/netstandard2.0/NuGet.Frameworks.dll", + "build/netstandard2.0/NuGet.Versioning.dll", + "build/netstandard2.0/System.Buffers.dll", + "build/netstandard2.0/System.Collections.Immutable.dll", + "build/netstandard2.0/System.Memory.dll", + "build/netstandard2.0/System.Numerics.Vectors.dll", + "build/netstandard2.0/System.Reflection.Metadata.dll", + "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "build/netstandard2.0/System.Text.Encodings.Web.dll", + "build/netstandard2.0/System.Text.Json.dll", + "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard2.0/coverlet.collector.deps.json", + "build/netstandard2.0/coverlet.collector.dll", + "build/netstandard2.0/coverlet.collector.pdb", + "build/netstandard2.0/coverlet.collector.targets", + "build/netstandard2.0/coverlet.core.dll", + "build/netstandard2.0/coverlet.core.pdb", + "build/netstandard2.0/coverlet.core.xml", + "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "coverlet-icon.png", + "coverlet.collector.6.0.2.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "sha512": "bs+1Pq3vQdS2lTyxNUd9fEhtMsq3eLUpK36k2t56iDMVrk6OrAoFtvrQrTK0Y0OetTcJrUkGU7hBlf+ORzHLqQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Testing/9.0.0": { + "sha512": "4tyGN2cb2lVqMwqPhDhXAkTtSci8RJ0cFKVHEU3yj6I4krcbyQE6SJmAQr5Hq8ARyVopKUrQp/qniDje/1I07A==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.testing/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net9.0/Microsoft.AspNetCore.Mvc.Testing.targets", + "buildTransitive/net9.0/Microsoft.AspNetCore.Mvc.Testing.targets", + "lib/net9.0/Microsoft.AspNetCore.Mvc.Testing.dll", + "lib/net9.0/Microsoft.AspNetCore.Mvc.Testing.xml", + "microsoft.aspnetcore.mvc.testing.9.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.testing.nuspec", + "tasks/netstandard2.0/Microsoft.AspNetCore.Mvc.Testing.Tasks.dll" + ] + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "sha512": "yAv5EDEi0Nkk75Vhxh6ppuXd/QIO8hzjGpAt/fGInMZWIX/mVwZ1IM50YFIWeLCVM8KDj0oFPQdcLeQ+9hEJsw==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.AspNetCore.TestHost/9.0.0": { + "sha512": "T5t8Qac05kJtFzsBxo+B3p0UcLNTRoWQf/1EbpaVBw9d7w2xL6RKYh0mqG+rPn2rulJDKeU3VfAd+r/YHdaKBg==", + "type": "package", + "path": "microsoft.aspnetcore.testhost/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.TestHost.dll", + "lib/net9.0/Microsoft.AspNetCore.TestHost.xml", + "microsoft.aspnetcore.testhost.9.0.0.nupkg.sha512", + "microsoft.aspnetcore.testhost.nuspec" + ] + }, + "Microsoft.CodeCoverage/17.12.0": { + "sha512": "4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA==", + "type": "package", + "path": "microsoft.codecoverage/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/Cov_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/alpine/x64/Cov_x64.config", + "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/macos/x64/Cov_x64.config", + "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ubuntu/x64/Cov_x64.config", + "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.17.12.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/9.0.0": { + "sha512": "YIMO9T3JL8MeEXgVozKt2v79hquo/EFtnY0vgxmLnUvk1Rei/halI7kOWZL2RBeV9FMGzgM9LZA8CVaNwFMaNA==", + "type": "package", + "path": "microsoft.extensions.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0": { + "sha512": "RiScL99DcyngY9zJA2ROrri7Br8tn5N4hP4YNvGdTN/bvg1A3dwvDOxHnNZ3Im7x2SJ5i4LkX1uPiR/MfSFBLQ==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0": { + "sha512": "qD+hdkBtR9Ps7AxfhTJCnoVakkadHgHlD1WRN0QHGHod+SDuca1ao1kF4G2rmpAz2AEKrE2N2vE8CCCZ+ILnNw==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0": { + "sha512": "v5R638eNMxksfXb7MFnkPwLPp+Ym4W/SIGNuoe8qFVVyvygQD5DdLusybmYSJEr9zc1UzWzim/ATKeIOVvOFDg==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0": { + "sha512": "4EK93Jcd2lQG4GY6PAw8jGss0ZzFP0vPc1J85mES5fKNuDTqgFXHba9onBw2s18fs3I4vdo2AWyfD1mPAxWSQQ==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/9.0.0": { + "sha512": "WiTK0LrnsqmedrbzwL7f4ZUo+/wByqy2eKab39I380i2rd8ImfCRMrtkqJVGDmfqlkP/YzhckVOwPc5MPrSNpg==", + "type": "package", + "path": "microsoft.extensions.configuration.json/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0": { + "sha512": "FShWw8OysquwV7wQHYkkz0VWsJSo6ETUu4h7tJRMtnG0uR+tzKOldhcO8xB1pGSOI3Ng6v3N1Q94YO8Rzq1P6A==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "sha512": "saxr2XzwgDU77LaQfYFXmddEDRUKHF4DaGMZkNB3qjdVSZlax3//dGJagJkKrGMIPNZs2jVFXITyCCR6UHJNdA==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/9.0.0": { + "sha512": "0CF9ZrNw5RAlRfbZuVIvzzhP8QeWqHiUmMBU/2H7Nmit8/vwP3/SbHeEctth7D4Gz2fBnEbokPc1NU8/j/1ZLw==", + "type": "package", + "path": "microsoft.extensions.diagnostics/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.9.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0": { + "sha512": "1K8P7XzuzX8W8pmXcZjcrqS6x5eSSdvhQohmcpgiQNY/HlDAlnrhR9dvlURfFz428A+RTCJpUyB+aKTA6AgVcQ==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/9.0.0": { + "sha512": "uK439QzYR0q2emLVtYzwyK3x+T5bTY4yWsd/k/ZUS9LR6Sflp8MIdhGXW8kQCd86dQD4tLqvcbLkku8qHY263Q==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/9.0.0": { + "sha512": "3+ZUSpOSmie+o8NnLIRqCxSh65XL/ExU7JYnFOg58awDRlY3lVpZ9A369jkoZL1rpsq7LDhEfkn2ghhGaY1y5Q==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/9.0.0": { + "sha512": "jGFKZiXs2HNseK3NK/rfwHNNovER71jSj4BD1a/649ml9+h6oEtYd0GSALZDNW8jZ2Rh+oAeadOa6sagYW1F2A==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/9.0.0": { + "sha512": "wNmQWRCa83HYbpxQ3wH7xBn8oyGjONSj1k8svzrFUFyJMfg/Ja/g0NfI0p85wxlUxBh97A6ypmL8X5vVUA5y2Q==", + "type": "package", + "path": "microsoft.extensions.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "lib/net462/Microsoft.Extensions.Hosting.dll", + "lib/net462/Microsoft.Extensions.Hosting.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0": { + "sha512": "yUKJgu81ExjvqbNWqZKshBbLntZMbMVz/P7Way2SBx7bMqA08Mfdc9O7hWDKAiSp+zPUGT6LKcSCQIPeDK+CCw==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/9.0.0": { + "sha512": "crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0": { + "sha512": "H05HiqaNmg6GjH34ocYE9Wm1twm3Oz2aXZko8GTwGBzM7op2brpAA8pJ5yyD1OpS1mXUtModBYOlcZ/wXeWsSg==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/9.0.0": { + "sha512": "yDZ4zsjl7N0K+R/1QTNpXBd79Kaf4qNLHtjk4NaG82UtNg2Z6etJywwv6OarOv3Rp7ocU7uIaRY4CrzHRO/d3w==", + "type": "package", + "path": "microsoft.extensions.logging.console/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/9.0.0": { + "sha512": "4wGlHsrLhYjLw4sFkfRixu2w4DK7dv60OjbvgbLGhUJk0eUPxYHhnszZ/P18nnAkfrPryvtOJ3ZTVev0kpqM6A==", + "type": "package", + "path": "microsoft.extensions.logging.debug/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets", + "lib/net462/Microsoft.Extensions.Logging.Debug.dll", + "lib/net462/Microsoft.Extensions.Logging.Debug.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0": { + "sha512": "/B8I5bScondnLMNULA3PBu/7Gvmv/P7L83j7gVrmLh6R+HCgHqUNIwVvzCok4ZjIXN2KxrsONHjFYwoBK5EJgQ==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets", + "lib/net462/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net462/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0": { + "sha512": "zvSjdOAb3HW3aJPM5jf+PR9UoIkoci9id80RXmBgrDEozWI0GDw8tdmpyZgZSwFDvGCwHFodFLNQaeH8879rlA==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "lib/net462/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net462/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net9.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.0": { + "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "type": "package", + "path": "microsoft.extensions.options/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0": { + "sha512": "Ob3FXsXkcSMQmGZi7qP07EQ39kZpSBlTcAZLbJLdI4FIf0Jug8biv2HTavWmnTirchctPlq9bl/26CXtQRguzA==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.Abstractions/8.15.0": { + "sha512": "e/DApa1GfxUqHSBHcpiQg8yaghKAvFVBQFcWh25jNoRobDZbduTUACY8bZ54eeGWXvimGmEDdF0zkS5Dq16XPQ==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/8.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net10.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.8.15.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/8.15.0": { + "sha512": "3513f5VzvOZy3ELd42wGnh1Q3e83tlGAuXFSNbENpgWYoAhLLzgFtd5PiaOPGAU0gqKhYGVzKavghLUGfX3HQg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/8.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net10.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.8.15.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/8.15.0": { + "sha512": "1gJLjhy0LV2RQMJ9NGzi5Tnb2l+c37o8D8Lrk2mrvmb6OQHZ7XJstd/XxvncXgBpad4x9CGXdipbZzJJCXKyAg==", + "type": "package", + "path": "microsoft.identitymodel.logging/8.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Microsoft.IdentityModel.Logging.dll", + "lib/net10.0/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/net8.0/Microsoft.IdentityModel.Logging.dll", + "lib/net8.0/Microsoft.IdentityModel.Logging.xml", + "lib/net9.0/Microsoft.IdentityModel.Logging.dll", + "lib/net9.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.8.15.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "sha512": "uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "type": "package", + "path": "microsoft.identitymodel.protocols/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net8.0/Microsoft.IdentityModel.Protocols.xml", + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net9.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "sha512": "AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/8.15.0": { + "sha512": "zUE9ysJXBtXlHHRtcRK3Sp8NzdCI1z/BRDTXJQ2TvBoI0ENRtnufYIep0O5TSCJRJGDwwuLTUx+l/bEYZUxpCA==", + "type": "package", + "path": "microsoft.identitymodel.tokens/8.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net10.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.8.15.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/17.12.0": { + "sha512": "kt/PKBZ91rFCWxVIJZSgVLk+YR+4KxTuHf799ho8WNiK5ZQpJNAEZCAWX86vcKrs+DiYjiibpYKdGZP6+/N17w==", + "type": "package", + "path": "microsoft.net.test.sdk/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net462/_._", + "lib/netcoreapp3.1/_._", + "microsoft.net.test.sdk.17.12.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.OpenApi/1.6.17": { + "sha512": "Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==", + "type": "package", + "path": "microsoft.openapi/1.6.17", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.6.17.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.TestPlatform.ObjectModel/17.12.0": { + "sha512": "TDqkTKLfQuAaPcEb3pDDWnh7b3SyZF+/W9OZvWFp6eJCIiiYFdSB6taE2I6tWrFw5ywhzOb6sreoGJTI6m3rSQ==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.17.12.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.12.0": { + "sha512": "MiPEJQNyADfwZ4pJNpQex+t9/jOClBGMiCiVVFuELCMSX2nmNfvUor3uFVxNNCg30uxDP8JDYfPnMXQzsfzYyg==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp3.1/x64/testhost.dll", + "build/netcoreapp3.1/x64/testhost.exe", + "build/netcoreapp3.1/x86/testhost.x86.dll", + "build/netcoreapp3.1/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/testhost.deps.json", + "lib/netcoreapp3.1/testhost.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/x64/msdia140.dll", + "lib/netcoreapp3.1/x86/msdia140.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.17.12.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "SixLabors.ImageSharp/3.1.12": { + "sha512": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", + "type": "package", + "path": "sixlabors.imagesharp/3.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "build/SixLabors.ImageSharp.props", + "lib/net6.0/SixLabors.ImageSharp.dll", + "lib/net6.0/SixLabors.ImageSharp.xml", + "sixlabors.imagesharp.128.png", + "sixlabors.imagesharp.3.1.12.nupkg.sha512", + "sixlabors.imagesharp.nuspec" + ] + }, + "System.Diagnostics.EventLog/9.0.0": { + "sha512": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "type": "package", + "path": "system.diagnostics.eventlog/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/net9.0/System.Diagnostics.EventLog.dll", + "lib/net9.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/8.15.0": { + "sha512": "dpodi7ixz6hxK8YCBYAWzm0IA8JYXoKcz0hbCbNifo519//rjUI0fBD8rfNr+IGqq+2gm4oQoXwHk09LX5SqqQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/8.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net10.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.8.15.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "xunit/2.9.2": { + "sha512": "7LhFS2N9Z6Xgg8aE5lY95cneYivRMfRI8v+4PATa4S64D5Z/Plkg0qa8dTRHSiGRgVZ/CL2gEfJDE5AUhOX+2Q==", + "type": "package", + "path": "xunit/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "xunit.2.9.2.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/1.16.0": { + "sha512": "hptYM7vGr46GUIgZt21YHO4rfuBAQS2eINbFo16CV/Dqq+24Tp+P5gDCACu1AbFfW4Sp/WRfDPSK8fmUUb8s0Q==", + "type": "package", + "path": "xunit.analyzers/1.16.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.1.16.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.9.2": { + "sha512": "QkNBAQG4pa66cholm28AxijBjrmki98/vsEh4Sx5iplzotvPgpiotcxqJQMRC8d7RV7nIT8ozh97957hDnZwsQ==", + "type": "package", + "path": "xunit.assert/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net6.0/xunit.assert.dll", + "lib/net6.0/xunit.assert.xml", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "xunit.assert.2.9.2.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.9.2": { + "sha512": "O6RrNSdmZ0xgEn5kT927PNwog5vxTtKrWMihhhrT0Sg9jQ7iBDciYOwzBgP2krBEk5/GBXI18R1lKvmnxGcb4w==", + "type": "package", + "path": "xunit.core/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.9.2.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.9.2": { + "sha512": "Ol+KlBJz1x8BrdnhN2DeOuLrr1I/cTwtHCggL9BvYqFuVd/TUSzxNT5O0NxCIXth30bsKxgMfdqLTcORtM52yQ==", + "type": "package", + "path": "xunit.extensibility.core/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "xunit.extensibility.core.2.9.2.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.9.2": { + "sha512": "rKMpq4GsIUIJibXuZoZ8lYp5EpROlnYaRpwu9Zr0sRZXE7JqJfEEbCsUriZqB+ByXCLFBJyjkTRULMdC+U566g==", + "type": "package", + "path": "xunit.extensibility.execution/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.9.2.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.visualstudio/2.8.2": { + "sha512": "vm1tbfXhFmjFMUmS4M0J0ASXz3/U5XvXBa6DOQUL3fEz4Vt6YPhv+ESCarx6M6D+9kJkJYZKCNvJMas1+nVfmQ==", + "type": "package", + "path": "xunit.runner.visualstudio/2.8.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "build/net462/xunit.abstractions.dll", + "build/net462/xunit.runner.reporters.net452.dll", + "build/net462/xunit.runner.utility.net452.dll", + "build/net462/xunit.runner.visualstudio.props", + "build/net462/xunit.runner.visualstudio.testadapter.dll", + "build/net6.0/xunit.abstractions.dll", + "build/net6.0/xunit.runner.reporters.netcoreapp10.dll", + "build/net6.0/xunit.runner.utility.netcoreapp10.dll", + "build/net6.0/xunit.runner.visualstudio.props", + "build/net6.0/xunit.runner.visualstudio.testadapter.dll", + "lib/net462/_._", + "lib/net6.0/_._", + "xunit.runner.visualstudio.2.8.2.nupkg.sha512", + "xunit.runner.visualstudio.nuspec" + ] + }, + "CDN/1.0.0": { + "type": "project", + "path": "../CDN/CDN.csproj", + "msbuildProject": "../CDN/CDN.csproj" + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "CDN >= 1.0.0", + "Microsoft.AspNetCore.Mvc.Testing >= 9.0.0", + "Microsoft.NET.Test.Sdk >= 17.12.0", + "System.IdentityModel.Tokens.Jwt >= 8.15.0", + "coverlet.collector >= 6.0.2", + "xunit >= 2.9.2", + "xunit.runner.visualstudio >= 2.8.2" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/CDN.Tests.csproj", + "projectName": "CDN.Tests", + "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/CDN.Tests.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Testing": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.12.0, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.15.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.9.2, )" + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[2.8.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/CDN.Tests/obj/project.nuget.cache b/CDN.Tests/obj/project.nuget.cache new file mode 100644 index 0000000..8240bf1 --- /dev/null +++ b/CDN.Tests/obj/project.nuget.cache @@ -0,0 +1,66 @@ +{ + "version": 2, + "dgSpecHash": "k3Y7C4JhcmI=", + "success": true, + "projectFilePath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN.Tests/CDN.Tests.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/coverlet.collector/6.0.2/coverlet.collector.6.0.2.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/9.0.0/microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.mvc.testing/9.0.0/microsoft.aspnetcore.mvc.testing.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.openapi/9.0.10/microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.testhost/9.0.0/microsoft.aspnetcore.testhost.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration/9.0.0/microsoft.extensions.configuration.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.0/microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.binder/9.0.0/microsoft.extensions.configuration.binder.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.commandline/9.0.0/microsoft.extensions.configuration.commandline.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.environmentvariables/9.0.0/microsoft.extensions.configuration.environmentvariables.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.fileextensions/9.0.0/microsoft.extensions.configuration.fileextensions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.json/9.0.0/microsoft.extensions.configuration.json.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.usersecrets/9.0.0/microsoft.extensions.configuration.usersecrets.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.0/microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.0/microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencymodel/9.0.0/microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.diagnostics/9.0.0/microsoft.extensions.diagnostics.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.diagnostics.abstractions/9.0.0/microsoft.extensions.diagnostics.abstractions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.fileproviders.abstractions/9.0.0/microsoft.extensions.fileproviders.abstractions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.fileproviders.physical/9.0.0/microsoft.extensions.fileproviders.physical.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.filesystemglobbing/9.0.0/microsoft.extensions.filesystemglobbing.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.hosting/9.0.0/microsoft.extensions.hosting.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.hosting.abstractions/9.0.0/microsoft.extensions.hosting.abstractions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging/9.0.0/microsoft.extensions.logging.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.0/microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.configuration/9.0.0/microsoft.extensions.logging.configuration.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.console/9.0.0/microsoft.extensions.logging.console.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.debug/9.0.0/microsoft.extensions.logging.debug.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.eventlog/9.0.0/microsoft.extensions.logging.eventlog.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.eventsource/9.0.0/microsoft.extensions.logging.eventsource.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options/9.0.0/microsoft.extensions.options.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options.configurationextensions/9.0.0/microsoft.extensions.options.configurationextensions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.primitives/9.0.0/microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.abstractions/8.15.0/microsoft.identitymodel.abstractions.8.15.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.jsonwebtokens/8.15.0/microsoft.identitymodel.jsonwebtokens.8.15.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.logging/8.15.0/microsoft.identitymodel.logging.8.15.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols/8.0.1/microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/8.0.1/microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.tokens/8.15.0/microsoft.identitymodel.tokens.8.15.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.net.test.sdk/17.12.0/microsoft.net.test.sdk.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.testplatform.objectmodel/17.12.0/microsoft.testplatform.objectmodel.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.testplatform.testhost/17.12.0/microsoft.testplatform.testhost.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/sixlabors.imagesharp/3.1.12/sixlabors.imagesharp.3.1.12.nupkg.sha512", + "/home/yla/.nuget/packages/system.diagnostics.eventlog/9.0.0/system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.identitymodel.tokens.jwt/8.15.0/system.identitymodel.tokens.jwt.8.15.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg.sha512", + "/home/yla/.nuget/packages/xunit/2.9.2/xunit.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.analyzers/1.16.0/xunit.analyzers.1.16.0.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.assert/2.9.2/xunit.assert.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.core/2.9.2/xunit.core.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.extensibility.core/2.9.2/xunit.extensibility.core.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.extensibility.execution/2.9.2/xunit.extensibility.execution.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.runner.visualstudio/2.8.2/xunit.runner.visualstudio.2.8.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/CDN/CDN.csproj b/CDN/CDN.csproj new file mode 100644 index 0000000..f5af94c --- /dev/null +++ b/CDN/CDN.csproj @@ -0,0 +1,15 @@ + + + + net9.0 + enable + enable + + + + + + + + + diff --git a/CDN/Program.cs b/CDN/Program.cs new file mode 100644 index 0000000..216fba6 --- /dev/null +++ b/CDN/Program.cs @@ -0,0 +1,140 @@ +using CDN.Services; +using Microsoft.AspNetCore.Authentication.JwtBearer; +using Microsoft.AspNetCore.Mvc; +using Microsoft.IdentityModel.Tokens; +using System.Text; + +var builder = WebApplication.CreateBuilder(args); + +// Add services +builder.Services.AddOpenApi(); +builder.Services.AddProblemDetails(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddHttpContextAccessor(); // For URL generation +builder.Services.AddAuthorization(); + +builder.Services.AddCors(options => +{ + options.AddPolicy("AllowAll", policy => + { + policy.AllowAnyOrigin() + .AllowAnyHeader() + .AllowAnyMethod(); + }); +}); + +// Configure JWT Authentication +var jwtSettings = builder.Configuration.GetSection("JWT"); +var key = Encoding.UTF8.GetBytes(jwtSettings["Key"] ?? "default_secret_key_if_missing"); + +builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) + .AddJwtBearer(options => + { + options.TokenValidationParameters = new TokenValidationParameters + { + ValidateIssuer = true, + ValidateAudience = true, + ValidateLifetime = true, + ValidateIssuerSigningKey = true, + ValidIssuer = jwtSettings["Issuer"], + ValidAudience = jwtSettings["Audience"], + IssuerSigningKey = new SymmetricSecurityKey(key) + }; + }); + +var app = builder.Build(); + +// Configure Middleware +if (app.Environment.IsDevelopment()) +{ + app.MapOpenApi(); +} + +app.UseCors("AllowAll"); +app.UseHttpsRedirection(); +app.UseAuthentication(); +app.UseAuthorization(); + +// Ensure wwwroot/uploads exists for StaticFiles +var webRootPath = app.Environment.WebRootPath ?? Path.Combine(Directory.GetCurrentDirectory(), "wwwroot"); +Directory.CreateDirectory(Path.Combine(webRootPath, "uploads")); + +app.UseStaticFiles(); // Serves files from wwwroot + +// Define Endpoints +var filesGroup = app.MapGroup("/api/v1/files"); + +filesGroup.MapPost("/upload", async (IFormFile file, [FromServices] IStorageService storage, [FromServices] ImageProcessingService imageProcessor, [FromServices] IHttpContextAccessor httpContextAccessor, int? w, int? h) => +{ + if (file == null || file.Length == 0) + return Results.BadRequest("No file uploaded."); + + string fileName = Guid.NewGuid().ToString(); // Generate unique name + Stream fileStream = file.OpenReadStream(); + + // Check if image for optimization + var extension = Path.GetExtension(file.FileName).ToLower(); + bool isImage = new[] { ".jpg", ".jpeg", ".png", ".webp" }.Contains(extension); + + if (isImage) + { + try + { + fileStream = await imageProcessor.ProcessImageAsync(fileStream, w, h); + fileName += ".webp"; // We convert to WebP + } + catch (Exception ex) + { + return Results.Problem($"Image processing failed: {ex.Message}"); + } + } + else + { + fileName += extension; + } + + try + { + var relativePath = await storage.SaveFileAsync(fileStream, fileName); + + var request = httpContextAccessor.HttpContext?.Request; + var fullUrl = request != null ? $"{request.Scheme}://{request.Host}/uploads/{fileName}" : null; + + return Results.Ok(new + { + Message = "File uploaded successfully", + Path = relativePath, + Url = fullUrl, + FileName = fileName + }); + } + catch (Exception ex) + { + return Results.Problem($"Storage failed: {ex.Message}"); + } +}) +.DisableAntiforgery(); +// .RequireAuthorization(); + +filesGroup.MapDelete("/{fileName}", async (string fileName, [FromServices] IStorageService storage) => +{ + if (string.IsNullOrEmpty(fileName)) return Results.BadRequest("Filename is required"); + + try + { + if (!storage.FileExists(fileName)) return Results.NotFound(); + + await storage.DeleteFileAsync(fileName); + return Results.Ok(new { Message = "File deleted successfully" }); + } + catch (Exception ex) + { + return Results.Problem($"Delete failed: {ex.Message}"); + } +}); +// .RequireAuthorization(); + +app.Run(); + +public partial class Program { } diff --git a/CDN/Properties/launchSettings.json b/CDN/Properties/launchSettings.json new file mode 100644 index 0000000..4853bc8 --- /dev/null +++ b/CDN/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:2003", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:7016;http://localhost:5208", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} \ No newline at end of file diff --git a/CDN/Services/IStorageService.cs b/CDN/Services/IStorageService.cs new file mode 100644 index 0000000..9c306a3 --- /dev/null +++ b/CDN/Services/IStorageService.cs @@ -0,0 +1,8 @@ +namespace CDN.Services; + +public interface IStorageService +{ + Task SaveFileAsync(Stream fileStream, string fileName); + bool FileExists(string fileName); + Task DeleteFileAsync(string fileName); +} diff --git a/CDN/Services/ImageProcessingService.cs b/CDN/Services/ImageProcessingService.cs new file mode 100644 index 0000000..3a7c608 --- /dev/null +++ b/CDN/Services/ImageProcessingService.cs @@ -0,0 +1,32 @@ +using SixLabors.ImageSharp; +using SixLabors.ImageSharp.Processing; +using SixLabors.ImageSharp.Formats.Webp; + +namespace CDN.Services; + +public class ImageProcessingService +{ + public async Task ProcessImageAsync(Stream inputStream, int? width, int? height) + { + var outStream = new MemoryStream(); + inputStream.Position = 0; // Ensure stream is at beginning + + using (var image = await Image.LoadAsync(inputStream)) + { + if (width.HasValue || height.HasValue) + { + image.Mutate(x => x.Resize(new ResizeOptions + { + Size = new Size(width ?? 0, height ?? 0), + Mode = ResizeMode.Max + })); + } + + // Always convert to WebP for optimization + await image.SaveAsync(outStream, new WebpEncoder()); + } + + outStream.Position = 0; + return outStream; + } +} diff --git a/CDN/Services/LocalStorageService.cs b/CDN/Services/LocalStorageService.cs new file mode 100644 index 0000000..215d408 --- /dev/null +++ b/CDN/Services/LocalStorageService.cs @@ -0,0 +1,41 @@ +namespace CDN.Services; + +public class LocalStorageService : IStorageService +{ + private readonly string _uploadPath; + + public LocalStorageService(IWebHostEnvironment env) + { + _uploadPath = Path.Combine(env.WebRootPath ?? Path.Combine(Directory.GetCurrentDirectory(), "wwwroot"), "uploads"); + if (!Directory.Exists(_uploadPath)) + { + Directory.CreateDirectory(_uploadPath); + } + } + + public async Task SaveFileAsync(Stream fileStream, string fileName) + { + var filePath = Path.Combine(_uploadPath, fileName); + using (var stream = new FileStream(filePath, FileMode.Create)) + { + await fileStream.CopyToAsync(stream); + } + return $"uploads/{fileName}"; + } + + public bool FileExists(string fileName) + { + var filePath = Path.Combine(_uploadPath, fileName); + return File.Exists(filePath); + } + + public Task DeleteFileAsync(string fileName) + { + var filePath = Path.Combine(_uploadPath, fileName); + if (File.Exists(filePath)) + { + File.Delete(filePath); + } + return Task.CompletedTask; + } +} diff --git a/CDN/appsettings.Development.json b/CDN/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/CDN/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/CDN/appsettings.json b/CDN/appsettings.json new file mode 100644 index 0000000..d9c1cbf --- /dev/null +++ b/CDN/appsettings.json @@ -0,0 +1,14 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "JWT": { + "Key": "this_is_a_very_secret_key_for_development_purposes", + "Issuer": "MassTechCDN", + "Audience": "MassTechClients" + } +} \ No newline at end of file diff --git a/CDN/bin/Debug/net9.0/CDN b/CDN/bin/Debug/net9.0/CDN new file mode 100755 index 0000000..bba1ec4 Binary files /dev/null and b/CDN/bin/Debug/net9.0/CDN differ diff --git a/CDN/bin/Debug/net9.0/CDN.deps.json b/CDN/bin/Debug/net9.0/CDN.deps.json new file mode 100644 index 0000000..b505293 --- /dev/null +++ b/CDN/bin/Debug/net9.0/CDN.deps.json @@ -0,0 +1,219 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "CDN/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.0", + "Microsoft.AspNetCore.OpenApi": "9.0.10", + "SixLabors.ImageSharp": "3.1.12" + }, + "runtime": { + "CDN.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52903" + } + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.10.0", + "fileVersion": "9.0.1025.47517" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.OpenApi/1.6.17": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.17.0", + "fileVersion": "1.6.17.0" + } + } + }, + "SixLabors.ImageSharp/3.1.12": { + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.1.12.0" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + } + } + }, + "libraries": { + "CDN/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bs+1Pq3vQdS2lTyxNUd9fEhtMsq3eLUpK36k2t56iDMVrk6OrAoFtvrQrTK0Y0OetTcJrUkGU7hBlf+ORzHLqQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yAv5EDEi0Nkk75Vhxh6ppuXd/QIO8hzjGpAt/fGInMZWIX/mVwZ1IM50YFIWeLCVM8KDj0oFPQdcLeQ+9hEJsw==", + "path": "microsoft.aspnetcore.openapi/9.0.10", + "hashPath": "microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OtlIWcyX01olfdevPKZdIPfBEvbcioDyBiE/Z2lHsopsMD7twcKtlN9kMevHmI5IIPhFpfwCIiR6qHQz1WHUIw==", + "path": "microsoft.identitymodel.abstractions/8.0.1", + "hashPath": "microsoft.identitymodel.abstractions.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s6++gF9x0rQApQzOBbSyp4jUaAlwm+DroKfL8gdOHxs83k8SJfUXhuc46rDB3rNXBQ1MVRxqKUrqFhO/M0E97g==", + "path": "microsoft.identitymodel.jsonwebtokens/8.0.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UCPF2exZqBXe7v/6sGNiM6zCQOUXXQ9+v5VTb9gPB8ZSUPnX53BxlN78v2jsbIvK9Dq4GovQxo23x8JgWvm/Qg==", + "path": "microsoft.identitymodel.logging/8.0.1", + "hashPath": "microsoft.identitymodel.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kDimB6Dkd3nkW2oZPDkMkVHfQt3IDqO5gL0oa8WVy3OP4uE8Ij+8TXnqg9TOd9ufjsY3IDiGz7pCUbnfL18tjg==", + "path": "microsoft.identitymodel.tokens/8.0.1", + "hashPath": "microsoft.identitymodel.tokens.8.0.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.17": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==", + "path": "microsoft.openapi/1.6.17", + "hashPath": "microsoft.openapi.1.6.17.nupkg.sha512" + }, + "SixLabors.ImageSharp/3.1.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", + "path": "sixlabors.imagesharp/3.1.12", + "hashPath": "sixlabors.imagesharp.3.1.12.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GJw3bYkWpOgvN3tJo5X4lYUeIFA2HD293FPUhKmp7qxS+g5ywAb34Dnd3cDAFLkcMohy5XTpoaZ4uAHuw0uSPQ==", + "path": "system.identitymodel.tokens.jwt/8.0.1", + "hashPath": "system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/CDN/bin/Debug/net9.0/CDN.dll b/CDN/bin/Debug/net9.0/CDN.dll new file mode 100644 index 0000000..3a17646 Binary files /dev/null and b/CDN/bin/Debug/net9.0/CDN.dll differ diff --git a/CDN/bin/Debug/net9.0/CDN.pdb b/CDN/bin/Debug/net9.0/CDN.pdb new file mode 100644 index 0000000..af7f9a0 Binary files /dev/null and b/CDN/bin/Debug/net9.0/CDN.pdb differ diff --git a/CDN/bin/Debug/net9.0/CDN.runtimeconfig.json b/CDN/bin/Debug/net9.0/CDN.runtimeconfig.json new file mode 100644 index 0000000..6925b65 --- /dev/null +++ b/CDN/bin/Debug/net9.0/CDN.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/CDN/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json b/CDN/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json new file mode 100644 index 0000000..6633d3c --- /dev/null +++ b/CDN/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.94qzmm0ak1.webp","AssetFile":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp"}]},{"Route":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","AssetFile":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","AssetFile":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:14 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.z60fugzkgu.webp","AssetFile":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:14 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp"}]},{"Route":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.94qzmm0ak1.webp","AssetFile":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp"}]},{"Route":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","AssetFile":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","AssetFile":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.z60fugzkgu.webp","AssetFile":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp"}]},{"Route":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.94qzmm0ak1.webp","AssetFile":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp"}]},{"Route":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","AssetFile":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","AssetFile":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:20 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.z60fugzkgu.webp","AssetFile":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:20 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp"}]},{"Route":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.94qzmm0ak1.webp","AssetFile":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:08:00 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp"}]},{"Route":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","AssetFile":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:08:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.mzrkc8y4l8.webp","AssetFile":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1548186"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:44:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mzrkc8y4l8"},{"Name":"integrity","Value":"sha256-Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI="},{"Name":"label","Value":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp"}]},{"Route":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","AssetFile":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1548186"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:44:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI="}]},{"Route":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.94qzmm0ak1.webp","AssetFile":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp"}]},{"Route":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","AssetFile":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","AssetFile":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:15:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.z60fugzkgu.webp","AssetFile":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:15:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp"}]},{"Route":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.94qzmm0ak1.webp","AssetFile":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp"}]},{"Route":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","AssetFile":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.94qzmm0ak1.webp","AssetFile":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp"}]},{"Route":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","AssetFile":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.94qzmm0ak1.webp","AssetFile":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:17 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp"}]},{"Route":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","AssetFile":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:17 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.94qzmm0ak1.webp","AssetFile":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp"}]},{"Route":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","AssetFile":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","AssetFile":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.z60fugzkgu.webp","AssetFile":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp"}]},{"Route":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.94qzmm0ak1.webp","AssetFile":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp"}]},{"Route":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","AssetFile":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.94qzmm0ak1.webp","AssetFile":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp"}]},{"Route":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","AssetFile":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","AssetFile":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:38 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.z60fugzkgu.webp","AssetFile":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:38 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp"}]},{"Route":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","AssetFile":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.z60fugzkgu.webp","AssetFile":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp"}]},{"Route":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.94qzmm0ak1.webp","AssetFile":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp"}]},{"Route":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","AssetFile":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","AssetFile":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.z60fugzkgu.webp","AssetFile":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp"}]},{"Route":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","AssetFile":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:30 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.z60fugzkgu.webp","AssetFile":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:30 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp"}]},{"Route":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","AssetFile":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.z60fugzkgu.webp","AssetFile":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp"}]},{"Route":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.94qzmm0ak1.webp","AssetFile":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp"}]},{"Route":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","AssetFile":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","AssetFile":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.z60fugzkgu.webp","AssetFile":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp"}]},{"Route":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","AssetFile":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:14 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.z60fugzkgu.webp","AssetFile":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:14 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp"}]},{"Route":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.94qzmm0ak1.webp","AssetFile":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp"}]},{"Route":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","AssetFile":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","AssetFile":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.z60fugzkgu.webp","AssetFile":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp"}]},{"Route":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","AssetFile":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:34 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.z60fugzkgu.webp","AssetFile":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:34 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp"}]},{"Route":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","AssetFile":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:21 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.z60fugzkgu.webp","AssetFile":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:21 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp"}]},{"Route":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","AssetFile":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:57 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.z60fugzkgu.webp","AssetFile":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp"}]},{"Route":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.94qzmm0ak1.webp","AssetFile":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:22 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp"}]},{"Route":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","AssetFile":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:22 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.94qzmm0ak1.webp","AssetFile":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp"}]},{"Route":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","AssetFile":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","AssetFile":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:45 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.z60fugzkgu.webp","AssetFile":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:45 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp"}]}]} \ No newline at end of file diff --git a/CDN/bin/Debug/net9.0/CDN.staticwebassets.runtime.json b/CDN/bin/Debug/net9.0/CDN.staticwebassets.runtime.json new file mode 100644 index 0000000..085119d --- /dev/null +++ b/CDN/bin/Debug/net9.0/CDN.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/"],"Root":{"Children":{"uploads":{"Children":{"163ffc2a-4adc-48b5-84ec-d48dbe901408.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp"},"Patterns":null},"19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp"},"Patterns":null},"1e5bfc9b-4889-47ef-9288-bd91751ae981.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp"},"Patterns":null},"23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp"},"Patterns":null},"2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp"},"Patterns":null},"43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp"},"Patterns":null},"43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp"},"Patterns":null},"4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp"},"Patterns":null},"5d5f5f24-e11d-4565-8245-8916d9334f62.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp"},"Patterns":null},"5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp"},"Patterns":null},"621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp"},"Patterns":null},"65104313-d0bf-4d11-81ca-d003aac3fd18.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp"},"Patterns":null},"6584fac7-d75d-4f6a-9689-7914d26cf019.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp"},"Patterns":null},"68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp"},"Patterns":null},"7d736081-d20b-4d7a-9585-3447e5f072c6.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp"},"Patterns":null},"852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp"},"Patterns":null},"86d33a17-a0a9-4e41-a0e5-064267a216e7.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp"},"Patterns":null},"8a4b23e0-f346-4b06-88f7-e9b85c812716.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp"},"Patterns":null},"a4df74a4-4f78-448d-9e95-99aba1a717a3.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp"},"Patterns":null},"a850d16e-f50e-464b-8613-068b02b56c84.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp"},"Patterns":null},"a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp"},"Patterns":null},"a9547d3e-6432-401d-ab21-24b1675095cf.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp"},"Patterns":null},"bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp"},"Patterns":null},"c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp"},"Patterns":null},"c8cc753d-ebdd-4374-8ca0-476981264c6c.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp"},"Patterns":null},"d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp"},"Patterns":null},"d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp"},"Patterns":null},"d595bffc-847c-48ca-87c5-ac96dd04edfb.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp"},"Patterns":null},"de3d4ffb-8784-40fb-a066-814a1c7db58e.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp"},"Patterns":null},"e6c7652b-9cc9-4f81-893d-16f731257dd2.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp"},"Patterns":null},"e908ceae-d0b9-41e1-ba97-c63318cad98e.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp"},"Patterns":null},"e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp"},"Patterns":null},"edcb1947-a095-49db-87b7-69796446a1dd.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp"},"Patterns":null},"f442b573-9620-4185-8e01-9ff3a9007051.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100755 index 0000000..ca76774 Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..ac18935 Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100755 index 0000000..e981f87 Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..25f2a7e Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..4ffdb25 Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 0000000..6c736d2 Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..9f30508 Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..83ec83a Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/CDN/bin/Debug/net9.0/Microsoft.OpenApi.dll b/CDN/bin/Debug/net9.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..d9f09da Binary files /dev/null and b/CDN/bin/Debug/net9.0/Microsoft.OpenApi.dll differ diff --git a/CDN/bin/Debug/net9.0/SixLabors.ImageSharp.dll b/CDN/bin/Debug/net9.0/SixLabors.ImageSharp.dll new file mode 100755 index 0000000..7302493 Binary files /dev/null and b/CDN/bin/Debug/net9.0/SixLabors.ImageSharp.dll differ diff --git a/CDN/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll b/CDN/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 0000000..c42b8d7 Binary files /dev/null and b/CDN/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/CDN/bin/Debug/net9.0/appsettings.Development.json b/CDN/bin/Debug/net9.0/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/CDN/bin/Debug/net9.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/CDN/bin/Debug/net9.0/appsettings.json b/CDN/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..d9c1cbf --- /dev/null +++ b/CDN/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,14 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "JWT": { + "Key": "this_is_a_very_secret_key_for_development_purposes", + "Issuer": "MassTechCDN", + "Audience": "MassTechClients" + } +} \ No newline at end of file diff --git a/CDN/obj/CDN.csproj.nuget.dgspec.json b/CDN/obj/CDN.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a8059be --- /dev/null +++ b/CDN/obj/CDN.csproj.nuget.dgspec.json @@ -0,0 +1,99 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj", + "projectName": "CDN", + "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.10, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[3.1.12, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/CDN/obj/CDN.csproj.nuget.g.props b/CDN/obj/CDN.csproj.nuget.g.props new file mode 100644 index 0000000..f331aec --- /dev/null +++ b/CDN/obj/CDN.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + \ No newline at end of file diff --git a/CDN/obj/CDN.csproj.nuget.g.targets b/CDN/obj/CDN.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/CDN/obj/CDN.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/CDN/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/CDN/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/CDN/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/CDN/obj/Debug/net10.0/CDN.AssemblyInfo.cs b/CDN/obj/Debug/net10.0/CDN.AssemblyInfo.cs new file mode 100644 index 0000000..bfcf0eb --- /dev/null +++ b/CDN/obj/Debug/net10.0/CDN.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CDN")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d222d4e9e3857c2f163948e86429fb396104f399")] +[assembly: System.Reflection.AssemblyProductAttribute("CDN")] +[assembly: System.Reflection.AssemblyTitleAttribute("CDN")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/CDN/obj/Debug/net10.0/CDN.AssemblyInfoInputs.cache b/CDN/obj/Debug/net10.0/CDN.AssemblyInfoInputs.cache new file mode 100644 index 0000000..df7ed6e --- /dev/null +++ b/CDN/obj/Debug/net10.0/CDN.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +311693175a504f6a192c9a5be92da0c509cc871004871c4a451306e2228b8b7e diff --git a/CDN/obj/Debug/net10.0/CDN.GeneratedMSBuildEditorConfig.editorconfig b/CDN/obj/Debug/net10.0/CDN.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e9b82ab --- /dev/null +++ b/CDN/obj/Debug/net10.0/CDN.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +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 = CDN +build_property.RootNamespace = CDN +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Backend/APIs/CDN/CDN +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/CDN/obj/Debug/net10.0/CDN.GlobalUsings.g.cs b/CDN/obj/Debug/net10.0/CDN.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/CDN/obj/Debug/net10.0/CDN.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/CDN/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/CDN/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/CDN/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/CDN/obj/Debug/net9.0/CDN.AssemblyInfo.cs b/CDN/obj/Debug/net9.0/CDN.AssemblyInfo.cs new file mode 100644 index 0000000..5c325cd --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CDN")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+206dfeabd74212fb6442b2ac195b5904b0472cb7")] +[assembly: System.Reflection.AssemblyProductAttribute("CDN")] +[assembly: System.Reflection.AssemblyTitleAttribute("CDN")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/CDN/obj/Debug/net9.0/CDN.AssemblyInfoInputs.cache b/CDN/obj/Debug/net9.0/CDN.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6c69bac --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +41bff8d79def47bb68be7bd44270743c5093c28a2d7f8586d81c1c95af193c29 diff --git a/CDN/obj/Debug/net9.0/CDN.GeneratedMSBuildEditorConfig.editorconfig b/CDN/obj/Debug/net9.0/CDN.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c9a9417 --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v9.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 = CDN +build_property.RootNamespace = CDN +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Backend/APIs/CDN/CDN +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/CDN/obj/Debug/net9.0/CDN.GlobalUsings.g.cs b/CDN/obj/Debug/net9.0/CDN.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/CDN/obj/Debug/net9.0/CDN.MvcApplicationPartsAssemblyInfo.cache b/CDN/obj/Debug/net9.0/CDN.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/CDN/obj/Debug/net9.0/CDN.MvcApplicationPartsAssemblyInfo.cs b/CDN/obj/Debug/net9.0/CDN.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..1c3041b --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,16 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/CDN/obj/Debug/net9.0/CDN.assets.cache b/CDN/obj/Debug/net9.0/CDN.assets.cache new file mode 100644 index 0000000..407c36e Binary files /dev/null and b/CDN/obj/Debug/net9.0/CDN.assets.cache differ diff --git a/CDN/obj/Debug/net9.0/CDN.csproj.AssemblyReference.cache b/CDN/obj/Debug/net9.0/CDN.csproj.AssemblyReference.cache new file mode 100644 index 0000000..56acf73 Binary files /dev/null and b/CDN/obj/Debug/net9.0/CDN.csproj.AssemblyReference.cache differ diff --git a/CDN/obj/Debug/net9.0/CDN.csproj.CoreCompileInputs.cache b/CDN/obj/Debug/net9.0/CDN.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..fcc409b --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b3dbeeffdef3f77813a0791f135d6356b34083d8130c053117373e3a819078a8 diff --git a/CDN/obj/Debug/net9.0/CDN.csproj.FileListAbsolute.txt b/CDN/obj/Debug/net9.0/CDN.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..7e8f621 --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.csproj.FileListAbsolute.txt @@ -0,0 +1,43 @@ +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/appsettings.Development.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/appsettings.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/CDN.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/CDN +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/CDN.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/CDN.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/CDN.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/CDN.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/SixLabors.ImageSharp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.MvcApplicationPartsAssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.MvcApplicationPartsAssemblyInfo.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/scopedcss/bundle/CDN.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/refint/CDN.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/CDN.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/ref/CDN.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/bin/Debug/net9.0/CDN.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/Debug/net9.0/swae.build.ex.cache diff --git a/CDN/obj/Debug/net9.0/CDN.csproj.Up2Date b/CDN/obj/Debug/net9.0/CDN.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/CDN/obj/Debug/net9.0/CDN.dll b/CDN/obj/Debug/net9.0/CDN.dll new file mode 100644 index 0000000..3a17646 Binary files /dev/null and b/CDN/obj/Debug/net9.0/CDN.dll differ diff --git a/CDN/obj/Debug/net9.0/CDN.genruntimeconfig.cache b/CDN/obj/Debug/net9.0/CDN.genruntimeconfig.cache new file mode 100644 index 0000000..fd58bc5 --- /dev/null +++ b/CDN/obj/Debug/net9.0/CDN.genruntimeconfig.cache @@ -0,0 +1 @@ +b388b6bcb41863eb1bcdea9f43146421c3daee97a0c50e7e2f024d6674404e83 diff --git a/CDN/obj/Debug/net9.0/CDN.pdb b/CDN/obj/Debug/net9.0/CDN.pdb new file mode 100644 index 0000000..af7f9a0 Binary files /dev/null and b/CDN/obj/Debug/net9.0/CDN.pdb differ diff --git a/CDN/obj/Debug/net9.0/apphost b/CDN/obj/Debug/net9.0/apphost new file mode 100755 index 0000000..bba1ec4 Binary files /dev/null and b/CDN/obj/Debug/net9.0/apphost differ diff --git a/CDN/obj/Debug/net9.0/ref/CDN.dll b/CDN/obj/Debug/net9.0/ref/CDN.dll new file mode 100644 index 0000000..447c23d Binary files /dev/null and b/CDN/obj/Debug/net9.0/ref/CDN.dll differ diff --git a/CDN/obj/Debug/net9.0/refint/CDN.dll b/CDN/obj/Debug/net9.0/refint/CDN.dll new file mode 100644 index 0000000..447c23d Binary files /dev/null and b/CDN/obj/Debug/net9.0/refint/CDN.dll differ diff --git a/CDN/obj/Debug/net9.0/rjimswa.dswa.cache.json b/CDN/obj/Debug/net9.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..4f102bf --- /dev/null +++ b/CDN/obj/Debug/net9.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"gRyZqjdbE87acmihA/SQb+96GaFxBNRV05pjR9EPWoU=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["Ey2hfWi4WZUA2AD7pqPnzesDuT\u002BTj1d1NJpmtaMgfog=","FFtZVpWFHjCuKBcBfnIeRLTnJ9\u002B8qbS5m746wvR2hns=","oK/9M6Ler0U7Ai549T\u002B14ft1GGiJktmueUOfgbNgsPU=","3ct0cb/kk3tJkNrkymuKmX22D\u002B6RXoGU/vRs\u002BCcSKVM=","Wy4n5iU1xx6AgVFP3MZww7t5Z2RCZducejB\u002BFeeisDA=","KSDs6nrif1Bej9\u002BKFI\u002B0zfs1WC6GOCOVV5VYeI0D\u002Bsc=","ZjFkmWrrP4b0T1g\u002BX4eQfHkGiY6qmyyrFCIn5TLhZTo=","oNZ0hLhVKFds/b6\u002BpcoEftCJjLFGpwOrojdEyk0uWDE=","pAhbOc0JBUBMaXVeFdS6u1uY547DmqH\u002BKwtCAE0q1HA=","k4t6etOsbLJsfFqZT2LdjSUMekyKYePKY1Ll7oCVgBw=","yVEOMHev5FSsyvGPNi7dg2Hs6Gx4S3EGNM/5iKoGHQ8=","opzlBN9dN3hqCsUvfSDdzghLOOgzZ8FEHIKlGAk\u002BCtE=","Ae2UJ\u002BWTNDv13rC0Sm0Rm/mqRkr7iOMIK2DkI64yd2U=","uj3Rb66WELdoGEG8Aisgu3Sm3r9SVt1XPDMg9Gv3Blk=","vHTKESSqqM1m\u002BU0PE\u002BjGO0LvdcgdBqj2LoycyTsdXqQ=","ajrOih5CEgRzGezeMZtdqFHMd2XW1vqIJX5FXIuRyaQ=","qR6e7IMChWlefl1izWCcPUpK6uyhBoWWpqV31AkZZLQ=","OHEuBB3ZwpgEHX2tekYHFHPEd48lWshbXAxEVEMyG3M=","z6BGit8TAdCNAswuELw9Yuz\u002ByfPRc1DbXsLtZ06EQTs=","Dkl51Jq2w2/jikxyA44CEy043z6JHJD4B0pRoypiq8M=","RJkW0PjZxlqen/Gow9E5H7G0XAkUjp4D0npWKE5In\u002B4=","xspsML8xV2tE7iKjWvHKyXD/XvgCIYWaeWg6AFPNCm4=","KNyjBWYju0RQt5\u002BCJW1nFkTwuttAqS19nVY0QLd89SA=","tbx1GA4VuoO9ajPl9rdjr8hdWb3DCw\u002BPoHjPkRJh/ns=","/l4Px5e7frZ02Dkf4kvJY6RRPLwPgMys0EUdVketQCo=","z5ZUe9NymIL2GNRki0CPMKx\u002BI1VBeAXpJLC701nmsws=","s\u002BDRsXYjVCT9wwlUNkGvcJ7P34s0J30SLSmJc9N2NhI=","a/gj\u002B5QNnKUWGEsBJ6RniV7usXo648jC/DdVoXtDVj0=","BSeHxhx4t8VM2/fEP1pMY8qsv2V6tf8wDeGKNT7Vd/M=","YA0LhiDbcR3fdgKILzUfdOMvK0cArSLZnThDBQ8pXY8=","k/jP7mCVHx\u002Bq2CjewlnJOX4IWEoMc1CeALbP14d69xY=","wFzupro5B7EahsNZgSiI2OJX7O8KHaEFlg0dmS3BfHM=","n0SUdAx/DDBqRXkd3GoFdoIRzNhHzYgL7qIqWBQFwO8=","Q2fCmmVnXWF9C2lWvql\u002BHmMsw4662gD\u002BYKyv9AoKIGU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/CDN/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..ac04808 --- /dev/null +++ b/CDN/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"nReq9IgygzoN/1u0BThNRvKAjUog1gle/PCRWsVZxfM=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["4OUAk1ThjtIdjZOoRWwSR4YGH13Yd2e5rTn9qfRdtgk=","knn999PLObxLwogDWCfsvmeceHhBbDYrjXY7PRZKkhs=","MJOoZEu\u002BdPOJCWYM4eEM1HVXBRlazcxIHHdP2H0RitI=","DG7RLR\u002Bxc1RFs/tcr0I4/AK1czLQBlleq2ojri83aCQ=","owOjzp4bcZl4Bul5/kD1BULLLyrc9BqVoQKsgc5Xr44=","obULXBiIW4ZUI9X/QAk72lBNGmQmmdUGnegYLgxUqIo=","2fcgrrOun/5pFUXM\u002BKV7PgDrwaJwwFBGgsvJaX/I654=","6Po0o3Uldy7TXM9pqKBdDIPYWeaDdlFvAJ0D9cQcNH0=","\u002BbWEcIwucVBkKE0O\u002Bv6U6vLG9/6o3nujhM7Es\u002Bpqbvk=","fzPf2hBRWx7hbB8saM34gt5DJNm/EG1Pf4ME84aIU7Y=","NfD0bMop/az9\u002BTn0Splt2L9nIUNNeow7TlWzreMxTL4=","fh2rlnrkRMhJZK\u002BahShjx3ukp5gQyF1BhKsrinMhj2U=","AmB8Zu8n0HMC8exiJ8ss4vQPcxNcMJxvkaYPY6jMmyw=","OYbGfc2BfUMdx3/kTKdITlVEw\u002BYU/T\u002Bp3uogKC85jgA=","\u002B1tstgmkhYLTOQBGKDijxBQ7ZU3WAXVn3Zvc6VRBCwA=","0aHQ4DZ3UJsG0UPdcDwFukEZoaQ7GXnJulNcPwCudV0=","gBwt9ZkSDVnNwor7Q\u002BY0kLA/iI5OtUaLOHOMSg4gUIc=","S2LpRtvEP93CLHGkqSmI1K8XVC5RJ4II8h2lSDt/kd8=","AiyRH05Rw7Hto2w/lS3Y7g9vW23EzKg/t\u002BdKPZVT0hE=","DNzWWB2sHt9JtpPakes6p4D4BEIkdFvtawk0HauCroU=","lJH7SA8qMTUaTRte/bmyD828Sx9csK4ABNgLec7/4AM=","rbOlAAgsFXxxU8d2JrA67LMBwMj8YjKpUbytT2C1yq4=","9M2Ik9dayU6yfVOCvmAkb/lU5JwnwuJu/rLcq52khfM=","inSgkHLI119qmZ6zMpVyC\u002BPyZF5CstZ4Ev/Jytzudb4=","IJM5xMlPabH0k0vYSYriLs4TwpH6PNVEI3nM5oFxDVg=","EqbLoQujUPQV\u002BMLnV1EsvimpovWZafjZUG71u8P0X40=","1e60tNf9HI8uC\u002BKWCIABgEGhCIvx2eIK7v3MoZiLW\u002Bk=","leaRn/IAnsfgvfqGrEFC2DdDJr\u002BKcFtj\u002BQOcCXjXsxQ=","LwfkBEgjAs7by259W/WjAVvXKZuZ/OrCv31p\u002B6IG2Pw=","JWCbWmu7lN07KfThrMZthd96TdhVaHsXhph/6GDvv6M=","pmZmPmOLb\u002BFFVvRvE74h6MqALJLqokr9Ef2FhrjDdrg=","rAOy6zB1DZbJ1\u002BJ8gN6s8kdLyjJpthSfu\u002BJo6N8VDz0=","uHlG54waS9\u002BgA/3SxUqeGmsPrV7mCwNbDh1juamw9nU=","d9DkFcabzhGVIUZAc9g8Vz5ETtwckMghPznEARWhq78=","AL5U1MS0bR6bLgx8v0TJ96WnZsw3gv2JG4qg1WhGBfE=","fUTx2RtVgPv/NVTaBS7YGg6Y0F3C3ta22VY28rWzZxU=","7HyVjbRKybyX\u002Bmfv1tw7qL3T4e9EYFruCr4XYqFqmZY=","DupRKcIyDoBx9Aq6xOWoXBbAuOv3tqKtigfzZ/z6nZA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/CDN/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..81d9d8c --- /dev/null +++ b/CDN/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"J5Dn9NqRMmIRp42pnAe9dFk3nmyPqeLjAma1pf6BbqE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["4OUAk1ThjtIdjZOoRWwSR4YGH13Yd2e5rTn9qfRdtgk=","knn999PLObxLwogDWCfsvmeceHhBbDYrjXY7PRZKkhs=","MJOoZEu\u002BdPOJCWYM4eEM1HVXBRlazcxIHHdP2H0RitI=","DG7RLR\u002Bxc1RFs/tcr0I4/AK1czLQBlleq2ojri83aCQ=","owOjzp4bcZl4Bul5/kD1BULLLyrc9BqVoQKsgc5Xr44=","obULXBiIW4ZUI9X/QAk72lBNGmQmmdUGnegYLgxUqIo=","2fcgrrOun/5pFUXM\u002BKV7PgDrwaJwwFBGgsvJaX/I654=","6Po0o3Uldy7TXM9pqKBdDIPYWeaDdlFvAJ0D9cQcNH0=","\u002BbWEcIwucVBkKE0O\u002Bv6U6vLG9/6o3nujhM7Es\u002Bpqbvk=","fzPf2hBRWx7hbB8saM34gt5DJNm/EG1Pf4ME84aIU7Y=","NfD0bMop/az9\u002BTn0Splt2L9nIUNNeow7TlWzreMxTL4=","fh2rlnrkRMhJZK\u002BahShjx3ukp5gQyF1BhKsrinMhj2U=","AmB8Zu8n0HMC8exiJ8ss4vQPcxNcMJxvkaYPY6jMmyw=","OYbGfc2BfUMdx3/kTKdITlVEw\u002BYU/T\u002Bp3uogKC85jgA=","\u002B1tstgmkhYLTOQBGKDijxBQ7ZU3WAXVn3Zvc6VRBCwA=","0aHQ4DZ3UJsG0UPdcDwFukEZoaQ7GXnJulNcPwCudV0=","gBwt9ZkSDVnNwor7Q\u002BY0kLA/iI5OtUaLOHOMSg4gUIc=","S2LpRtvEP93CLHGkqSmI1K8XVC5RJ4II8h2lSDt/kd8=","AiyRH05Rw7Hto2w/lS3Y7g9vW23EzKg/t\u002BdKPZVT0hE=","DNzWWB2sHt9JtpPakes6p4D4BEIkdFvtawk0HauCroU=","lJH7SA8qMTUaTRte/bmyD828Sx9csK4ABNgLec7/4AM=","rbOlAAgsFXxxU8d2JrA67LMBwMj8YjKpUbytT2C1yq4=","9M2Ik9dayU6yfVOCvmAkb/lU5JwnwuJu/rLcq52khfM=","inSgkHLI119qmZ6zMpVyC\u002BPyZF5CstZ4Ev/Jytzudb4=","IJM5xMlPabH0k0vYSYriLs4TwpH6PNVEI3nM5oFxDVg=","EqbLoQujUPQV\u002BMLnV1EsvimpovWZafjZUG71u8P0X40=","1e60tNf9HI8uC\u002BKWCIABgEGhCIvx2eIK7v3MoZiLW\u002Bk=","leaRn/IAnsfgvfqGrEFC2DdDJr\u002BKcFtj\u002BQOcCXjXsxQ=","LwfkBEgjAs7by259W/WjAVvXKZuZ/OrCv31p\u002B6IG2Pw=","JWCbWmu7lN07KfThrMZthd96TdhVaHsXhph/6GDvv6M=","pmZmPmOLb\u002BFFVvRvE74h6MqALJLqokr9Ef2FhrjDdrg=","rAOy6zB1DZbJ1\u002BJ8gN6s8kdLyjJpthSfu\u002BJo6N8VDz0=","uHlG54waS9\u002BgA/3SxUqeGmsPrV7mCwNbDh1juamw9nU=","d9DkFcabzhGVIUZAc9g8Vz5ETtwckMghPznEARWhq78=","AL5U1MS0bR6bLgx8v0TJ96WnZsw3gv2JG4qg1WhGBfE=","fUTx2RtVgPv/NVTaBS7YGg6Y0F3C3ta22VY28rWzZxU=","7HyVjbRKybyX\u002Bmfv1tw7qL3T4e9EYFruCr4XYqFqmZY=","DupRKcIyDoBx9Aq6xOWoXBbAuOv3tqKtigfzZ/z6nZA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/rpswa.dswa.cache.json b/CDN/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..3eee52a --- /dev/null +++ b/CDN/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"jLGeJ6e1QpJGJWAa24H8A3tcAji6Axfd06C1nEwu+Zg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["4OUAk1ThjtIdjZOoRWwSR4YGH13Yd2e5rTn9qfRdtgk=","knn999PLObxLwogDWCfsvmeceHhBbDYrjXY7PRZKkhs=","MJOoZEu\u002BdPOJCWYM4eEM1HVXBRlazcxIHHdP2H0RitI=","DG7RLR\u002Bxc1RFs/tcr0I4/AK1czLQBlleq2ojri83aCQ=","owOjzp4bcZl4Bul5/kD1BULLLyrc9BqVoQKsgc5Xr44=","obULXBiIW4ZUI9X/QAk72lBNGmQmmdUGnegYLgxUqIo=","2fcgrrOun/5pFUXM\u002BKV7PgDrwaJwwFBGgsvJaX/I654=","6Po0o3Uldy7TXM9pqKBdDIPYWeaDdlFvAJ0D9cQcNH0=","\u002BbWEcIwucVBkKE0O\u002Bv6U6vLG9/6o3nujhM7Es\u002Bpqbvk=","fzPf2hBRWx7hbB8saM34gt5DJNm/EG1Pf4ME84aIU7Y=","NfD0bMop/az9\u002BTn0Splt2L9nIUNNeow7TlWzreMxTL4=","fh2rlnrkRMhJZK\u002BahShjx3ukp5gQyF1BhKsrinMhj2U=","AmB8Zu8n0HMC8exiJ8ss4vQPcxNcMJxvkaYPY6jMmyw=","OYbGfc2BfUMdx3/kTKdITlVEw\u002BYU/T\u002Bp3uogKC85jgA=","\u002B1tstgmkhYLTOQBGKDijxBQ7ZU3WAXVn3Zvc6VRBCwA=","0aHQ4DZ3UJsG0UPdcDwFukEZoaQ7GXnJulNcPwCudV0=","gBwt9ZkSDVnNwor7Q\u002BY0kLA/iI5OtUaLOHOMSg4gUIc=","S2LpRtvEP93CLHGkqSmI1K8XVC5RJ4II8h2lSDt/kd8=","AiyRH05Rw7Hto2w/lS3Y7g9vW23EzKg/t\u002BdKPZVT0hE=","DNzWWB2sHt9JtpPakes6p4D4BEIkdFvtawk0HauCroU=","lJH7SA8qMTUaTRte/bmyD828Sx9csK4ABNgLec7/4AM=","rbOlAAgsFXxxU8d2JrA67LMBwMj8YjKpUbytT2C1yq4=","9M2Ik9dayU6yfVOCvmAkb/lU5JwnwuJu/rLcq52khfM=","inSgkHLI119qmZ6zMpVyC\u002BPyZF5CstZ4Ev/Jytzudb4=","IJM5xMlPabH0k0vYSYriLs4TwpH6PNVEI3nM5oFxDVg=","EqbLoQujUPQV\u002BMLnV1EsvimpovWZafjZUG71u8P0X40=","1e60tNf9HI8uC\u002BKWCIABgEGhCIvx2eIK7v3MoZiLW\u002Bk=","leaRn/IAnsfgvfqGrEFC2DdDJr\u002BKcFtj\u002BQOcCXjXsxQ=","LwfkBEgjAs7by259W/WjAVvXKZuZ/OrCv31p\u002B6IG2Pw=","JWCbWmu7lN07KfThrMZthd96TdhVaHsXhph/6GDvv6M=","pmZmPmOLb\u002BFFVvRvE74h6MqALJLqokr9Ef2FhrjDdrg=","rAOy6zB1DZbJ1\u002BJ8gN6s8kdLyjJpthSfu\u002BJo6N8VDz0=","uHlG54waS9\u002BgA/3SxUqeGmsPrV7mCwNbDh1juamw9nU=","d9DkFcabzhGVIUZAc9g8Vz5ETtwckMghPznEARWhq78=","AL5U1MS0bR6bLgx8v0TJ96WnZsw3gv2JG4qg1WhGBfE=","fUTx2RtVgPv/NVTaBS7YGg6Y0F3C3ta22VY28rWzZxU="],"CachedAssets":{"4OUAk1ThjtIdjZOoRWwSR4YGH13Yd2e5rTn9qfRdtgk=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:40.4349681+00:00"},"knn999PLObxLwogDWCfsvmeceHhBbDYrjXY7PRZKkhs=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","FileLength":27510,"LastWriteTime":"2026-01-10T21:56:14.4622747+00:00"},"MJOoZEu\u002BdPOJCWYM4eEM1HVXBRlazcxIHHdP2H0RitI=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","FileLength":80262,"LastWriteTime":"2026-01-10T09:37:32.6816653+00:00"},"DG7RLR\u002Bxc1RFs/tcr0I4/AK1czLQBlleq2ojri83aCQ=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:27.5730977+00:00"},"obULXBiIW4ZUI9X/QAk72lBNGmQmmdUGnegYLgxUqIo=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:24:20.4184818+00:00"},"2fcgrrOun/5pFUXM\u002BKV7PgDrwaJwwFBGgsvJaX/I654=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:08:00.1286801+00:00"},"6Po0o3Uldy7TXM9pqKBdDIPYWeaDdlFvAJ0D9cQcNH0=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"mzrkc8y4l8","Integrity":"Tmna2HM\u002BfE/\u002BwRMR/PG1SxcQYO50YBFhG3kYVwXRInI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","FileLength":1548186,"LastWriteTime":"2026-01-06T08:44:56.1490223+00:00"},"\u002BbWEcIwucVBkKE0O\u002Bv6U6vLG9/6o3nujhM7Es\u002Bpqbvk=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:40.6770242+00:00"},"NfD0bMop/az9\u002BTn0Splt2L9nIUNNeow7TlWzreMxTL4=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:37.6478588+00:00"},"fh2rlnrkRMhJZK\u002BahShjx3ukp5gQyF1BhKsrinMhj2U=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:32.5686672+00:00"},"AmB8Zu8n0HMC8exiJ8ss4vQPcxNcMJxvkaYPY6jMmyw=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","FileLength":80262,"LastWriteTime":"2026-01-10T21:56:17.0601115+00:00"},"OYbGfc2BfUMdx3/kTKdITlVEw\u002BYU/T\u002Bp3uogKC85jgA=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:10:18.1954466+00:00"},"\u002B1tstgmkhYLTOQBGKDijxBQ7ZU3WAXVn3Zvc6VRBCwA=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","FileLength":27510,"LastWriteTime":"2026-01-06T08:33:12.9961741+00:00"},"gBwt9ZkSDVnNwor7Q\u002BY0kLA/iI5OtUaLOHOMSg4gUIc=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","FileLength":80262,"LastWriteTime":"2026-01-06T08:33:16.3924578+00:00"},"S2LpRtvEP93CLHGkqSmI1K8XVC5RJ4II8h2lSDt/kd8=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:38.087215+00:00"},"AiyRH05Rw7Hto2w/lS3Y7g9vW23EzKg/t\u002BdKPZVT0hE=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:07:25.0616674+00:00"},"DNzWWB2sHt9JtpPakes6p4D4BEIkdFvtawk0HauCroU=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a850d16e-f50e-464b-8613-068b02b56c84#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","FileLength":80262,"LastWriteTime":"2026-01-10T18:08:16.9580132+00:00"},"rbOlAAgsFXxxU8d2JrA67LMBwMj8YjKpUbytT2C1yq4=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:30.1568724+00:00"},"9M2Ik9dayU6yfVOCvmAkb/lU5JwnwuJu/rLcq52khfM=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:10:18.4810546+00:00"},"inSgkHLI119qmZ6zMpVyC\u002BPyZF5CstZ4Ev/Jytzudb4=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:29.9194595+00:00"},"IJM5xMlPabH0k0vYSYriLs4TwpH6PNVEI3nM5oFxDVg=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:37.9318557+00:00"},"EqbLoQujUPQV\u002BMLnV1EsvimpovWZafjZUG71u8P0X40=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","FileLength":27510,"LastWriteTime":"2026-01-10T18:08:14.5760257+00:00"},"1e60tNf9HI8uC\u002BKWCIABgEGhCIvx2eIK7v3MoZiLW\u002Bk=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:07:28.4179919+00:00"},"leaRn/IAnsfgvfqGrEFC2DdDJr\u002BKcFtj\u002BQOcCXjXsxQ=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","FileLength":27510,"LastWriteTime":"2026-01-10T09:37:29.410809+00:00"},"LwfkBEgjAs7by259W/WjAVvXKZuZ/OrCv31p\u002B6IG2Pw=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:34.9490564+00:00"},"JWCbWmu7lN07KfThrMZthd96TdhVaHsXhph/6GDvv6M=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","FileLength":27510,"LastWriteTime":"2026-01-06T08:43:21.4864649+00:00"},"pmZmPmOLb\u002BFFVvRvE74h6MqALJLqokr9Ef2FhrjDdrg=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:07:57.8680019+00:00"},"rAOy6zB1DZbJ1\u002BJ8gN6s8kdLyjJpthSfu\u002BJo6N8VDz0=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:24:22.8678192+00:00"},"uHlG54waS9\u002BgA/3SxUqeGmsPrV7mCwNbDh1juamw9nU=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/edcb1947-a095-49db-87b7-69796446a1dd#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","FileLength":80262,"LastWriteTime":"2026-01-06T08:43:24.8156251+00:00"},"owOjzp4bcZl4Bul5/kD1BULLLyrc9BqVoQKsgc5Xr44=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","FileLength":80262,"LastWriteTime":"2026-01-21T05:07:31.0502093+00:00"},"fzPf2hBRWx7hbB8saM34gt5DJNm/EG1Pf4ME84aIU7Y=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","FileLength":27510,"LastWriteTime":"2026-01-19T18:15:25.8163822+00:00"},"0aHQ4DZ3UJsG0UPdcDwFukEZoaQ7GXnJulNcPwCudV0=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","FileLength":80262,"LastWriteTime":"2026-01-19T18:16:49.0202237+00:00"},"lJH7SA8qMTUaTRte/bmyD828Sx9csK4ABNgLec7/4AM=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","FileLength":27510,"LastWriteTime":"2026-01-21T05:07:28.426336+00:00"},"d9DkFcabzhGVIUZAc9g8Vz5ETtwckMghPznEARWhq78=":{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/f442b573-9620-4185-8e01-9ff3a9007051#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","FileLength":27510,"LastWriteTime":"2026-01-19T18:16:45.9301147+00:00"}},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/CDN/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..6633d3c --- /dev/null +++ b/CDN/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.94qzmm0ak1.webp","AssetFile":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp"}]},{"Route":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","AssetFile":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","AssetFile":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:14 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.z60fugzkgu.webp","AssetFile":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:14 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp"}]},{"Route":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.94qzmm0ak1.webp","AssetFile":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp"}]},{"Route":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","AssetFile":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","AssetFile":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.z60fugzkgu.webp","AssetFile":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp"}]},{"Route":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.94qzmm0ak1.webp","AssetFile":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp"}]},{"Route":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","AssetFile":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","AssetFile":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:20 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.z60fugzkgu.webp","AssetFile":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:20 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp"}]},{"Route":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.94qzmm0ak1.webp","AssetFile":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:08:00 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp"}]},{"Route":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","AssetFile":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:08:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.mzrkc8y4l8.webp","AssetFile":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1548186"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:44:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mzrkc8y4l8"},{"Name":"integrity","Value":"sha256-Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI="},{"Name":"label","Value":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp"}]},{"Route":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","AssetFile":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1548186"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:44:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI="}]},{"Route":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.94qzmm0ak1.webp","AssetFile":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp"}]},{"Route":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","AssetFile":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","AssetFile":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:15:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.z60fugzkgu.webp","AssetFile":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:15:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp"}]},{"Route":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.94qzmm0ak1.webp","AssetFile":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp"}]},{"Route":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","AssetFile":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.94qzmm0ak1.webp","AssetFile":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp"}]},{"Route":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","AssetFile":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.94qzmm0ak1.webp","AssetFile":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:17 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp"}]},{"Route":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","AssetFile":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:17 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.94qzmm0ak1.webp","AssetFile":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp"}]},{"Route":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","AssetFile":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","AssetFile":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.z60fugzkgu.webp","AssetFile":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp"}]},{"Route":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.94qzmm0ak1.webp","AssetFile":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp"}]},{"Route":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","AssetFile":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.94qzmm0ak1.webp","AssetFile":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp"}]},{"Route":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","AssetFile":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","AssetFile":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:38 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.z60fugzkgu.webp","AssetFile":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:38 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp"}]},{"Route":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","AssetFile":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.z60fugzkgu.webp","AssetFile":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp"}]},{"Route":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.94qzmm0ak1.webp","AssetFile":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp"}]},{"Route":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","AssetFile":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","AssetFile":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.z60fugzkgu.webp","AssetFile":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp"}]},{"Route":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","AssetFile":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:30 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.z60fugzkgu.webp","AssetFile":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:30 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp"}]},{"Route":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","AssetFile":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.z60fugzkgu.webp","AssetFile":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp"}]},{"Route":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.94qzmm0ak1.webp","AssetFile":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp"}]},{"Route":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","AssetFile":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","AssetFile":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.z60fugzkgu.webp","AssetFile":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp"}]},{"Route":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","AssetFile":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:14 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.z60fugzkgu.webp","AssetFile":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:14 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp"}]},{"Route":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.94qzmm0ak1.webp","AssetFile":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp"}]},{"Route":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","AssetFile":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","AssetFile":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.z60fugzkgu.webp","AssetFile":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp"}]},{"Route":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","AssetFile":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:34 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.z60fugzkgu.webp","AssetFile":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:34 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp"}]},{"Route":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","AssetFile":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:21 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.z60fugzkgu.webp","AssetFile":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:21 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp"}]},{"Route":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","AssetFile":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:57 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.z60fugzkgu.webp","AssetFile":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp"}]},{"Route":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.94qzmm0ak1.webp","AssetFile":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:22 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp"}]},{"Route":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","AssetFile":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:22 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.94qzmm0ak1.webp","AssetFile":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp"}]},{"Route":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","AssetFile":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","AssetFile":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:45 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.z60fugzkgu.webp","AssetFile":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:45 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp"}]}]} \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/staticwebassets.build.json b/CDN/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..d614c2a --- /dev/null +++ b/CDN/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"IuDbzwEs2m1FQGC62CpRRPPa/pg9sw5ofwUXrWaKhUc=","Source":"CDN","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"CDN/wwwroot","Source":"CDN","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:40+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","FileLength":27510,"LastWriteTime":"2026-01-10T21:56:14+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","FileLength":80262,"LastWriteTime":"2026-01-10T09:37:32+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:27+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","FileLength":80262,"LastWriteTime":"2026-01-21T05:07:31+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:24:20+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:08:00+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"mzrkc8y4l8","Integrity":"Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","FileLength":1548186,"LastWriteTime":"2026-01-06T08:44:56+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:40+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","FileLength":27510,"LastWriteTime":"2026-01-19T18:15:25+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:37+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:32+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","FileLength":80262,"LastWriteTime":"2026-01-10T21:56:17+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:10:18+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","FileLength":27510,"LastWriteTime":"2026-01-06T08:33:12+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","FileLength":80262,"LastWriteTime":"2026-01-19T18:16:49+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","FileLength":80262,"LastWriteTime":"2026-01-06T08:33:16+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:38+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:07:25+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a850d16e-f50e-464b-8613-068b02b56c84#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","FileLength":80262,"LastWriteTime":"2026-01-10T18:08:16+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","FileLength":27510,"LastWriteTime":"2026-01-21T05:07:28+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:30+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:10:18+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","FileLength":80262,"LastWriteTime":"2026-01-10T12:30:29+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:37+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","FileLength":27510,"LastWriteTime":"2026-01-10T18:08:14+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:07:28+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","FileLength":27510,"LastWriteTime":"2026-01-10T09:37:29+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","FileLength":27510,"LastWriteTime":"2026-01-10T12:30:34+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","FileLength":27510,"LastWriteTime":"2026-01-06T08:43:21+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","FileLength":27510,"LastWriteTime":"2026-01-06T09:07:57+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","FileLength":80262,"LastWriteTime":"2026-01-06T09:24:22+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/edcb1947-a095-49db-87b7-69796446a1dd#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"94qzmm0ak1","Integrity":"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","FileLength":80262,"LastWriteTime":"2026-01-06T08:43:24+00:00"},{"Identity":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","SourceId":"CDN","SourceType":"Discovered","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/","BasePath":"/","RelativePath":"uploads/f442b573-9620-4185-8e01-9ff3a9007051#[.{fingerprint}]?.webp","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"z60fugzkgu","Integrity":"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","FileLength":27510,"LastWriteTime":"2026-01-19T18:16:45+00:00"}],"Endpoints":[{"Route":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp"}]},{"Route":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:14 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:14 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp"}]},{"Route":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp"}]},{"Route":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:27 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:27 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp"}]},{"Route":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:31 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp"}]},{"Route":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:31 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:20 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:20 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp"}]},{"Route":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:08:00 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp"}]},{"Route":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:08:00 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.mzrkc8y4l8.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1548186"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:44:56 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"mzrkc8y4l8"},{"Name":"integrity","Value":"sha256-Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI="},{"Name":"label","Value":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp"}]},{"Route":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1548186"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:44:56 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Tmna2HM+fE/+wRMR/PG1SxcQYO50YBFhG3kYVwXRInI="}]},{"Route":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp"}]},{"Route":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:40 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:15:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:15:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp"}]},{"Route":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp"}]},{"Route":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:32 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp"}]},{"Route":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:32 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:17 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp"}]},{"Route":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 21:56:17 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp"}]},{"Route":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp"}]},{"Route":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:49 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp"}]},{"Route":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:49 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp"}]},{"Route":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:33:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:38 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:38 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp"}]},{"Route":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:25 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:25 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp"}]},{"Route":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:16 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp"}]},{"Route":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:16 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Wed, 21 Jan 2026 05:07:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp"}]},{"Route":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:30 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:30 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp"}]},{"Route":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:10:18 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp"}]},{"Route":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp"}]},{"Route":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:37 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp"}]},{"Route":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:14 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 18:08:14 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp"}]},{"Route":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:28 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp"}]},{"Route":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:28 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:29 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 09:37:29 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp"}]},{"Route":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:34 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Sat, 10 Jan 2026 12:30:34 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp"}]},{"Route":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:21 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:21 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp"}]},{"Route":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:57 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:07:57 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp"}]},{"Route":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:22 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp"}]},{"Route":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 09:24:22 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.94qzmm0ak1.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:24 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"94qzmm0ak1"},{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="},{"Name":"label","Value":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp"}]},{"Route":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"80262"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM=\""},{"Name":"Last-Modified","Value":"Tue, 06 Jan 2026 08:43:24 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-ByOC0Npxwd7wNag6/aSAI1c48fmUrVBNJ0BywOh8IVM="}]},{"Route":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:45 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="}]},{"Route":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.z60fugzkgu.webp","AssetFile":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"27510"},{"Name":"Content-Type","Value":"image/webp"},{"Name":"ETag","Value":"\"RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y=\""},{"Name":"Last-Modified","Value":"Mon, 19 Jan 2026 18:16:45 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"z60fugzkgu"},{"Name":"integrity","Value":"sha256-RQMmzgvRx6GWgFIWYgoA1frAF4ejYCtBG8kTmM2ao8Y="},{"Name":"label","Value":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp"}]}]} \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/staticwebassets.build.json.cache b/CDN/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..0324f24 --- /dev/null +++ b/CDN/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +IuDbzwEs2m1FQGC62CpRRPPa/pg9sw5ofwUXrWaKhUc= \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/staticwebassets.development.json b/CDN/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..085119d --- /dev/null +++ b/CDN/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/wwwroot/"],"Root":{"Children":{"uploads":{"Children":{"163ffc2a-4adc-48b5-84ec-d48dbe901408.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp"},"Patterns":null},"19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp"},"Patterns":null},"1e5bfc9b-4889-47ef-9288-bd91751ae981.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp"},"Patterns":null},"23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp"},"Patterns":null},"2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp"},"Patterns":null},"43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp"},"Patterns":null},"43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp"},"Patterns":null},"4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp"},"Patterns":null},"5d5f5f24-e11d-4565-8245-8916d9334f62.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp"},"Patterns":null},"5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp"},"Patterns":null},"621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp"},"Patterns":null},"65104313-d0bf-4d11-81ca-d003aac3fd18.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp"},"Patterns":null},"6584fac7-d75d-4f6a-9689-7914d26cf019.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp"},"Patterns":null},"68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp"},"Patterns":null},"7d736081-d20b-4d7a-9585-3447e5f072c6.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp"},"Patterns":null},"852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp"},"Patterns":null},"86d33a17-a0a9-4e41-a0e5-064267a216e7.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp"},"Patterns":null},"8a4b23e0-f346-4b06-88f7-e9b85c812716.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp"},"Patterns":null},"a4df74a4-4f78-448d-9e95-99aba1a717a3.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp"},"Patterns":null},"a850d16e-f50e-464b-8613-068b02b56c84.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp"},"Patterns":null},"a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp"},"Patterns":null},"a9547d3e-6432-401d-ab21-24b1675095cf.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp"},"Patterns":null},"bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp"},"Patterns":null},"c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp"},"Patterns":null},"c8cc753d-ebdd-4374-8ca0-476981264c6c.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp"},"Patterns":null},"d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp"},"Patterns":null},"d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp"},"Patterns":null},"d595bffc-847c-48ca-87c5-ac96dd04edfb.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp"},"Patterns":null},"de3d4ffb-8784-40fb-a066-814a1c7db58e.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp"},"Patterns":null},"e6c7652b-9cc9-4f81-893d-16f731257dd2.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp"},"Patterns":null},"e908ceae-d0b9-41e1-ba97-c63318cad98e.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp"},"Patterns":null},"e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp"},"Patterns":null},"edcb1947-a095-49db-87b7-69796446a1dd.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp"},"Patterns":null},"f442b573-9620-4185-8e01-9ff3a9007051.webp":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/CDN/obj/Debug/net9.0/swae.build.ex.cache b/CDN/obj/Debug/net9.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/CDN/obj/project.assets.json b/CDN/obj/project.assets.json new file mode 100644 index 0000000..73a503d --- /dev/null +++ b/CDN/obj/project.assets.json @@ -0,0 +1,512 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.OpenApi/1.6.17": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "SixLabors.ImageSharp/3.1.12": { + "type": "package", + "compile": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "build": { + "build/SixLabors.ImageSharp.props": {} + } + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "compile": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.0": { + "sha512": "bs+1Pq3vQdS2lTyxNUd9fEhtMsq3eLUpK36k2t56iDMVrk6OrAoFtvrQrTK0Y0OetTcJrUkGU7hBlf+ORzHLqQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.OpenApi/9.0.10": { + "sha512": "yAv5EDEi0Nkk75Vhxh6ppuXd/QIO8hzjGpAt/fGInMZWIX/mVwZ1IM50YFIWeLCVM8KDj0oFPQdcLeQ+9hEJsw==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/9.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/8.0.1": { + "sha512": "OtlIWcyX01olfdevPKZdIPfBEvbcioDyBiE/Z2lHsopsMD7twcKtlN9kMevHmI5IIPhFpfwCIiR6qHQz1WHUIw==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.8.0.1.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/8.0.1": { + "sha512": "s6++gF9x0rQApQzOBbSyp4jUaAlwm+DroKfL8gdOHxs83k8SJfUXhuc46rDB3rNXBQ1MVRxqKUrqFhO/M0E97g==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.8.0.1.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/8.0.1": { + "sha512": "UCPF2exZqBXe7v/6sGNiM6zCQOUXXQ9+v5VTb9gPB8ZSUPnX53BxlN78v2jsbIvK9Dq4GovQxo23x8JgWvm/Qg==", + "type": "package", + "path": "microsoft.identitymodel.logging/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/net8.0/Microsoft.IdentityModel.Logging.dll", + "lib/net8.0/Microsoft.IdentityModel.Logging.xml", + "lib/net9.0/Microsoft.IdentityModel.Logging.dll", + "lib/net9.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.8.0.1.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "sha512": "uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "type": "package", + "path": "microsoft.identitymodel.protocols/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net8.0/Microsoft.IdentityModel.Protocols.xml", + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net9.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "sha512": "AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/8.0.1": { + "sha512": "kDimB6Dkd3nkW2oZPDkMkVHfQt3IDqO5gL0oa8WVy3OP4uE8Ij+8TXnqg9TOd9ufjsY3IDiGz7pCUbnfL18tjg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.8.0.1.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.OpenApi/1.6.17": { + "sha512": "Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==", + "type": "package", + "path": "microsoft.openapi/1.6.17", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.6.17.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "SixLabors.ImageSharp/3.1.12": { + "sha512": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", + "type": "package", + "path": "sixlabors.imagesharp/3.1.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "build/SixLabors.ImageSharp.props", + "lib/net6.0/SixLabors.ImageSharp.dll", + "lib/net6.0/SixLabors.ImageSharp.xml", + "sixlabors.imagesharp.128.png", + "sixlabors.imagesharp.3.1.12.nupkg.sha512", + "sixlabors.imagesharp.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/8.0.1": { + "sha512": "GJw3bYkWpOgvN3tJo5X4lYUeIFA2HD293FPUhKmp7qxS+g5ywAb34Dnd3cDAFLkcMohy5XTpoaZ4uAHuw0uSPQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Microsoft.AspNetCore.Authentication.JwtBearer >= 9.0.0", + "Microsoft.AspNetCore.OpenApi >= 9.0.10", + "SixLabors.ImageSharp >= 3.1.12" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj", + "projectName": "CDN", + "projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.10, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[3.1.12, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[9.0.11, 9.0.11]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[9.0.11, 9.0.11]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/CDN/obj/project.nuget.cache b/CDN/obj/project.nuget.cache new file mode 100644 index 0000000..6bd450f --- /dev/null +++ b/CDN/obj/project.nuget.cache @@ -0,0 +1,23 @@ +{ + "version": 2, + "dgSpecHash": "e2V+NpVxE7w=", + "success": true, + "projectFilePath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/CDN/CDN/CDN.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/9.0.0/microsoft.aspnetcore.authentication.jwtbearer.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.openapi/9.0.10/microsoft.aspnetcore.openapi.9.0.10.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.abstractions/8.0.1/microsoft.identitymodel.abstractions.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.jsonwebtokens/8.0.1/microsoft.identitymodel.jsonwebtokens.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.logging/8.0.1/microsoft.identitymodel.logging.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols/8.0.1/microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/8.0.1/microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.tokens/8.0.1/microsoft.identitymodel.tokens.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512", + "/home/yla/.nuget/packages/sixlabors.imagesharp/3.1.12/sixlabors.imagesharp.3.1.12.nupkg.sha512", + "/home/yla/.nuget/packages/system.identitymodel.tokens.jwt/8.0.1/system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.netcore.app.ref/9.0.11/microsoft.netcore.app.ref.9.0.11.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.11/microsoft.aspnetcore.app.ref.9.0.11.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.netcore.app.host.linux-x64/9.0.11/microsoft.netcore.app.host.linux-x64.9.0.11.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/CDN/wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp b/CDN/wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/163ffc2a-4adc-48b5-84ec-d48dbe901408.webp differ diff --git a/CDN/wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp b/CDN/wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/19bfca4f-d70c-4e4c-a065-67e4e5e767a9.webp differ diff --git a/CDN/wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp b/CDN/wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/1e5bfc9b-4889-47ef-9288-bd91751ae981.webp differ diff --git a/CDN/wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp b/CDN/wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/23fb5ecd-fdc8-4f6f-8542-4c37835178de.webp differ diff --git a/CDN/wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp b/CDN/wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/2a9e7cf3-c1db-4082-a573-82e49b3cece0.webp differ diff --git a/CDN/wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp b/CDN/wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/43696e9f-5ac4-4d79-bc7f-678c20c2588f.webp differ diff --git a/CDN/wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp b/CDN/wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/43fc4d71-b32c-4d61-9772-0693b0d1d26e.webp differ diff --git a/CDN/wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp b/CDN/wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp new file mode 100644 index 0000000..b1d0985 Binary files /dev/null and b/CDN/wwwroot/uploads/4c9ff32b-7690-47a9-b5c0-f6a45cbc4954.webp differ diff --git a/CDN/wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp b/CDN/wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/5d5f5f24-e11d-4565-8245-8916d9334f62.webp differ diff --git a/CDN/wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp b/CDN/wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/5df7e3b6-ea98-4fe0-b21e-2e483cd4efd5.webp differ diff --git a/CDN/wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp b/CDN/wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/621cb1d9-ad4b-4bcf-9be9-fa62e5aab604.webp differ diff --git a/CDN/wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp b/CDN/wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/65104313-d0bf-4d11-81ca-d003aac3fd18.webp differ diff --git a/CDN/wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp b/CDN/wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/6584fac7-d75d-4f6a-9689-7914d26cf019.webp differ diff --git a/CDN/wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp b/CDN/wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/68a7e8f0-dca9-41f6-ba7b-bcfafb37a041.webp differ diff --git a/CDN/wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp b/CDN/wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/7d736081-d20b-4d7a-9585-3447e5f072c6.webp differ diff --git a/CDN/wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp b/CDN/wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/852508c3-2df2-4c9c-a1de-c3a0f2fd6ea7.webp differ diff --git a/CDN/wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp b/CDN/wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/86d33a17-a0a9-4e41-a0e5-064267a216e7.webp differ diff --git a/CDN/wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp b/CDN/wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/8a4b23e0-f346-4b06-88f7-e9b85c812716.webp differ diff --git a/CDN/wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp b/CDN/wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/a4df74a4-4f78-448d-9e95-99aba1a717a3.webp differ diff --git a/CDN/wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp b/CDN/wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/a850d16e-f50e-464b-8613-068b02b56c84.webp differ diff --git a/CDN/wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp b/CDN/wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/a880cd9b-80a6-4f4a-9098-59cffbe02c58.webp differ diff --git a/CDN/wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp b/CDN/wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/a9547d3e-6432-401d-ab21-24b1675095cf.webp differ diff --git a/CDN/wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp b/CDN/wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/bef98203-d7e2-4ca5-af9f-4d35bed01f68.webp differ diff --git a/CDN/wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp b/CDN/wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/c77d6334-b3d3-47db-9295-2cfa17ab9dc8.webp differ diff --git a/CDN/wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp b/CDN/wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/c8cc753d-ebdd-4374-8ca0-476981264c6c.webp differ diff --git a/CDN/wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp b/CDN/wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/d10b2ed4-f4ea-4d07-b520-2a7f5bbbcd57.webp differ diff --git a/CDN/wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp b/CDN/wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/d31b0b54-dcc9-49b5-a6d2-0e9368b2427c.webp differ diff --git a/CDN/wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp b/CDN/wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/d595bffc-847c-48ca-87c5-ac96dd04edfb.webp differ diff --git a/CDN/wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp b/CDN/wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/de3d4ffb-8784-40fb-a066-814a1c7db58e.webp differ diff --git a/CDN/wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp b/CDN/wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/e6c7652b-9cc9-4f81-893d-16f731257dd2.webp differ diff --git a/CDN/wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp b/CDN/wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/e908ceae-d0b9-41e1-ba97-c63318cad98e.webp differ diff --git a/CDN/wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp b/CDN/wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/e962b91c-637a-47b2-a9c6-9d0ab93e920d.webp differ diff --git a/CDN/wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp b/CDN/wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp new file mode 100644 index 0000000..4993fad Binary files /dev/null and b/CDN/wwwroot/uploads/edcb1947-a095-49db-87b7-69796446a1dd.webp differ diff --git a/CDN/wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp b/CDN/wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp new file mode 100644 index 0000000..5189869 Binary files /dev/null and b/CDN/wwwroot/uploads/f442b573-9620-4185-8e01-9ff3a9007051.webp differ diff --git a/go-fast-cdn/Dockerfile b/go-fast-cdn/Dockerfile new file mode 100644 index 0000000..9f03449 --- /dev/null +++ b/go-fast-cdn/Dockerfile @@ -0,0 +1,9 @@ +FROM alpine:3.17 +ARG GO_FAST_VERSION=0.1.0 +RUN apk add --no-cache unzip openssh wget \ + && wget -O /tmp/cdn.zip https://github.com/kevinanielsen/go-fast-cdn/releases/download/${GO_FAST_VERSION}/go-fast-cdn-x86_64-linux.zip \ + && unzip /tmp/cdn.zip -d /cdn/ \ + && chmod +x /cdn/go-fast-cdn-linux \ + && rm /tmp/cdn.zip +EXPOSE 8080 +CMD ["/cdn/go-fast-cdn-linux"] \ No newline at end of file